nostream/.nycrc.json

49 lines
638 B
JSON
Raw Normal View History

2022-08-14 05:33:57 +00:00
{
"all": true,
"cache": true,
"branches": 80,
"lines": 80,
"functions": 80,
"statements": 80,
"watermarks": {
"lines": [
80,
95
],
"functions": [
80,
95
],
"branches": [
80,
95
],
"statements": [
80,
95
]
},
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"src/@types",
2022-08-31 12:52:21 +00:00
"src/constants",
"src/database"
2022-08-14 05:33:57 +00:00
],
"require": [
"ts-node/register",
2022-08-14 05:33:57 +00:00
"source-map-support/register"
],
"reporter": [
"text",
"text-summary",
2022-10-18 14:47:35 +00:00
"lcov"
2022-08-14 05:33:57 +00:00
],
"instrument": true,
"sourceMap": true
}