Files
T

23 lines
370 B
JSON
Raw Permalink Normal View History

{
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100,
"all": true,
2023-02-21 22:07:06 -06:00
"include": [
"src/**/*.ts"
],
"exclude": [
"src/index.ts",
"**/*.spec.ts"
],
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
2023-02-21 22:07:06 -06:00
}