Files
docx-js/.nycrc

26 lines
371 B
Plaintext
Raw Normal View History

2018-10-26 20:11:40 +01:00
{
"check-coverage": true,
2022-11-03 00:30:16 +00:00
"statements": 99.79,
"branches": 98.41,
"functions": 100,
2022-10-29 15:10:02 +01:00
"lines": 99.73,
2018-10-26 20:11:40 +01:00
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.spec.ts",
"src/import-dotx/import-dotx.ts"
2018-10-26 20:11:40 +01:00
],
"reporter": [
"lcov",
"text",
"json"
],
"extension": [
".ts"
],
"cache": true,
"all": true,
"sourceMap": true
}