2026-07-24 17:36:57 +08:00
|
|
|
{
|
|
|
|
|
"$schema": "https://raw.githubusercontent.com/stryker-mutator/stryker-js/master/packages/api/schema/stryker-core.json",
|
|
|
|
|
"testRunner": "vitest",
|
|
|
|
|
"plugins": ["@stryker-mutator/vitest-runner"],
|
|
|
|
|
"mutate": ["src/**/*.ts", "!src/index.ts"],
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"incrementalFile": "reports/stryker-incremental.json",
|
|
|
|
|
"reporters": ["html", "clear-text", "progress"],
|
2026-07-27 15:37:30 +08:00
|
|
|
"htmlReporter": {
|
|
|
|
|
"fileName": "reports/mutation/mutation.html"
|
|
|
|
|
},
|
|
|
|
|
"thresholds": {
|
|
|
|
|
"high": 80,
|
|
|
|
|
"low": 60,
|
|
|
|
|
"break": null
|
|
|
|
|
},
|
2026-07-24 17:36:57 +08:00
|
|
|
"tempDirName": ".stryker-tmp",
|
2026-07-27 15:37:30 +08:00
|
|
|
"cleanTempDir": "always",
|
2026-07-24 17:36:57 +08:00
|
|
|
"ignoreStatic": true
|
|
|
|
|
}
|