-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstryker.conf.json
More file actions
16 lines (16 loc) · 631 Bytes
/
stryker.conf.json
File metadata and controls
16 lines (16 loc) · 631 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"$schema": "./node_modules/@stryker-mutator/core/schema/stryker-schema.json",
"packageManager": "pnpm",
"plugins": ["@stryker-mutator/jest-runner", "@stryker-mutator/typescript-checker"],
"reporters": ["html", "clear-text", "progress"],
"testRunner": "jest",
"checkers": ["typescript"],
"tsconfigFile": "tsconfig.json",
"coverageAnalysis": "perTest",
"thresholds": { "high": 100, "low": 99, "break": 95 },
"mutate": [
"{src,lib}/**/!(*.+(s|S)pec|*.+(t|T)est).+(cjs|mjs|js|ts|jsx|tsx|html|vue)",
"!{src,lib}/**/+(__tests__|__utils__|__mocks__)/**/*.+(cjs|mjs|js|cts|mts|ts|jsx|tsx|html|vue)",
"!src/index.ts"
]
}