[READ-ONLY] Mirror of https://github.com/bombshell-dev/tools. Internal CLI to standardize tooling across all Bombshell projects
Something went wrong. Try again.
301 B · 12 lines
TypeScript
at feat/docs
12345678910111213import { fileURLToPath } from "node:url";import { defineConfig } from "vitest/config";
export default defineConfig({ test: { exclude: ["dist/**", "node_modules/**"], env: { FORCE_COLOR: "1", }, snapshotSerializers: [fileURLToPath(import.meta.resolve("vitest-ansi-serializer"))], },});