-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.nycrc
More file actions
36 lines (36 loc) · 671 Bytes
/
Copy path.nycrc
File metadata and controls
36 lines (36 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"check-coverage": true,
"branches": 70,
"functions": 75,
"lines": 80,
"statements": 80,
"sourceMap": false,
"instrument": true,
"all": true,
"extends": "@istanbuljs/nyc-config-typescript",
"extension": [
".ts"
],
"exclude": [
"src/**/**/*.test.ts",
"src/interface/*",
"dist",
"node_modules"
],
"reporter": [
"text",
"lcov"
],
"require": [
"ts-node/register"
],
"include": [
"src/*.ts",
"src/**/**/*.ts"
],
"exclude": [
"src/*.test.ts",
"src/**/**/*.test.ts",
"src/interface/*"
]
}