14 lines
331 B
JSON
14 lines
331 B
JSON
{
|
|
"extends": "@istanbuljs/nyc-config-typescript",
|
|
"check-coverage": true,
|
|
"branches": 100,
|
|
"lines": 100,
|
|
"functions": 100,
|
|
"statements": 100,
|
|
"all": true,
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["src/index.ts", "**/*.spec.ts"],
|
|
"reporter": ["html", "lcov", "text", "text-summary"],
|
|
"report-dir": "coverage"
|
|
}
|