16 lines
257 B
JSON
16 lines
257 B
JSON
|
{
|
||
|
"extends": "@istanbuljs/nyc-config-typescript",
|
||
|
"check-coverage": true,
|
||
|
"include": [
|
||
|
"**/src/*.ts"
|
||
|
],
|
||
|
"reporter": [
|
||
|
"lcov",
|
||
|
"cobertura",
|
||
|
"text-summary"
|
||
|
],
|
||
|
"statements": 90,
|
||
|
"branches": 90,
|
||
|
"functions": 90,
|
||
|
"lines": 90
|
||
|
}
|