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

23 lines
370 B
JSON

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