Forked from taderich73/filesystem-access
vitest.config.ts
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
coverage: {
provider: "v8",
reporter: ["text", "html", "lcov"],
reportsDirectory: "./coverage",
include: ["src/**/*.ts"],
exclude: ["src/**/*.test.ts"],
thresholds: {
statements: 80,
lines: 80,
functions: 70,
branches: 60,
},
},
},
});