Files
T

14 lines
331 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-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-01 23:45:14 -06:00
"reporter": ["html", "lcov", "text", "text-summary"],
"report-dir": "coverage"
2023-02-01 23:45:14 -06:00
}