-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstryker.config.json
More file actions
36 lines (36 loc) · 845 Bytes
/
Copy pathstryker.config.json
File metadata and controls
36 lines (36 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"$schema": "https://help.stryker-mutator.io/rs/stryker-config.schema.json",
"packageManager": "npm",
"reporters": ["html", "json", "clear-text", "progress"],
"testRunner": "vitest",
"plugins": [
"@stryker-mutator/vitest-runner",
"@stryker-mutator/typescript-checker"
],
"coverageAnalysis": "off",
"mutator": {
"excludedMutations": [
"StringLiteral",
"ObjectLiteral",
"MethodExpression",
"ConditionalExpression",
"LogicalOperator",
"OptionalChaining",
"BlockStatement",
"EqualityOperator"
]
},
"ignoreStatic": false,
"concurrency": 4,
"inPlace": true,
"files": ["**/*", "!node_modules/**/*", "!.stryker-tmp/**/*", "!dist/**/*"],
"mutate": [
"src/lib/utils.ts",
"src/lib/postLoader.ts",
"src/lib/markdown.ts"
],
"vitest": {
"configFile": "vite.config.ts"
},
"disableTypeChecks": false
}