becca-lyria/vitest.config.ts
Naomi Carrigan 98fd889647
All checks were successful
Node.js CI / Lint and Test (push) Successful in 48s
feat: initial prototype
2025-02-23 16:19:30 -08:00

16 lines
272 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
coverage: {
provider: "istanbul",
reporter: ["text", "html"],
all: true,
allowExternal: true,
thresholds: {
lines: 0,
},
},
},
});