Files
onspring-api-sdk-javascript/.nycrc
T

14 lines
339 B
JSON
Raw 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-21 21:34:45 -06:00
"reporter": ["html", "lcov", "text", "text-summary", "json"],
"report-dir": "coverage"
2023-02-01 23:45:14 -06:00
}