2023-01-26 13:58:25 -06:00
|
|
|
{
|
|
|
|
|
"extends": "@istanbuljs/nyc-config-typescript",
|
|
|
|
|
"check-coverage": true,
|
|
|
|
|
"all": true,
|
2023-02-01 23:45:14 -06:00
|
|
|
"include": ["src/**/*.ts"],
|
2023-02-02 20:24:20 -06:00
|
|
|
"exclude": ["src/onspringApiSdk.ts", "**/*.spec.ts"],
|
2023-02-01 23:45:14 -06:00
|
|
|
"reporter": ["html", "lcov", "text", "text-summary"],
|
2023-01-26 13:58:25 -06:00
|
|
|
"report-dir": "coverage"
|
2023-02-01 23:45:14 -06:00
|
|
|
}
|