maylin-taryne/vitest.config.ts

16 lines
272 B
TypeScript
Raw Normal View History

2025-02-23 16:39:42 -08:00
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
coverage: {
provider: "istanbul",
reporter: ["text", "html"],
all: true,
allowExternal: true,
thresholds: {
lines: 0,
},
},
},
});