Import the committed KnowledgeFS snapshot dc4072ee302317145612087ce7440851dc329fd0 under knowledge-fs/ without its Git history, local IDE settings, or build artifacts.
23 lines
478 B
TypeScript
23 lines
478 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
coverage: {
|
|
include: [
|
|
"lib/evaluation-dashboard.ts",
|
|
"lib/failed-query-diagnostics.ts",
|
|
"lib/retrieval-studio.ts",
|
|
"lib/trace-comparison.ts",
|
|
],
|
|
provider: "v8",
|
|
reporter: ["text", "json-summary"],
|
|
thresholds: {
|
|
branches: 90,
|
|
functions: 90,
|
|
lines: 90,
|
|
statements: 90,
|
|
},
|
|
},
|
|
},
|
|
});
|