dptlib/.nycrc.json

16 lines
257 B
JSON
Raw Normal View History

2022-03-09 22:38:02 +01:00
{
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"include": [
"**/src/*.ts"
],
"reporter": [
"lcov",
"cobertura",
"text-summary"
],
"statements": 90,
"branches": 90,
"functions": 90,
"lines": 90
}