forked from systemfsoftware/systemfsoftware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstryker.base.json
More file actions
47 lines (47 loc) · 1.01 KB
/
Copy pathstryker.base.json
File metadata and controls
47 lines (47 loc) · 1.01 KB
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
37
38
39
40
41
42
43
44
45
46
47
{
"$schema": "./node_modules/@systemfsoftware/stryker-js-core/schema/stryker-schema.json",
"packageManager": "pnpm",
"testRunner": "vitest",
"checkers": [
"typescript"
],
"plugins": [
"@stryker-mutator/vitest-runner",
"@systemfsoftware/stryker-js-typescript-checker",
"@systemfsoftware/stryker-plugins/effect-schema-ignorer"
],
"reporters": [
"progress",
"html",
"json"
],
"htmlReporter": {
"fileName": "reports/mutation-report.html"
},
"jsonReporter": {
"fileName": "reports/mutation-report.json"
},
"vitest": {
"configFile": "vitest.config.ts",
"dir": ".",
"related": true
},
"typescriptChecker": {
"prioritizePerformanceOverAccuracy": true
},
"coverageAnalysis": "perTest",
"incremental": false,
"incrementalFile": "reports/stryker-incremental.json",
"ignorePatterns": [
"reports",
"coverage"
],
"ignorers": [
"effect-schema-declarations"
],
"thresholds": {
"high": 100,
"low": 80,
"break": 100
}
}