Skip to content

Commit b2afa40

Browse files
committed
chore(config): add typeCoverage configuration to package.json
Add TypeScript type coverage tracking with 89% threshold to match current coverage level (89.41%). This ensures TypeScript type safety is maintained alongside test coverage monitoring.
1 parent 3ba28a2 commit b2afa40

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

package.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,5 +218,16 @@
218218
"@yarnpkg/core"
219219
]
220220
}
221+
},
222+
"typeCoverage": {
223+
"cache": true,
224+
"atLeast": 89,
225+
"ignoreAsAssertion": true,
226+
"ignoreCatch": true,
227+
"ignoreEmptyType": true,
228+
"ignore-non-null-assertion": true,
229+
"ignore-type-assertion": true,
230+
"ignore-files": "test/*",
231+
"strict": true
221232
}
222233
}

0 commit comments

Comments
 (0)