mirror of
https://github.com/murashit/codex-panel.git
synced 2026-07-22 06:57:10 +00:00
14 lines
414 B
JavaScript
14 lines
414 B
JavaScript
export default {
|
|
testRunner: "vitest",
|
|
coverageAnalysis: "perTest",
|
|
mutate: [
|
|
"src/domain/**/*.ts",
|
|
"src/app-server/protocol/**/*.ts",
|
|
"src/features/chat/domain/**/*.ts",
|
|
"src/features/chat/app-server/mappers/thread-stream/**/*.ts",
|
|
"src/features/chat/application/state/root-reducer.ts",
|
|
],
|
|
ignoreStatic: true,
|
|
incremental: true,
|
|
reporters: ["clear-text", "progress", "html"],
|
|
};
|