2023-01-26 13:58:25 -06:00
|
|
|
{
|
|
|
|
|
"extends": "@istanbuljs/nyc-config-typescript",
|
|
|
|
|
"check-coverage": true,
|
2023-02-03 22:32:57 -06:00
|
|
|
"branches": 100,
|
|
|
|
|
"lines": 100,
|
|
|
|
|
"functions": 100,
|
|
|
|
|
"statements": 100,
|
2023-01-26 13:58:25 -06:00
|
|
|
"all": true,
|
2023-02-01 23:45:14 -06:00
|
|
|
"include": ["src/**/*.ts"],
|
2023-02-03 11:17:53 -06:00
|
|
|
"exclude": ["src/index.ts", "**/*.spec.ts"],
|
2023-02-21 21:34:45 -06:00
|
|
|
"reporter": ["html", "lcov", "text", "text-summary", "json"],
|
2023-01-26 13:58:25 -06:00
|
|
|
"report-dir": "coverage"
|
2023-02-01 23:45:14 -06:00
|
|
|
}
|