-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.nycrc
More file actions
54 lines (54 loc) · 873 Bytes
/
Copy path.nycrc
File metadata and controls
54 lines (54 loc) · 873 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"all": true,
"check-coverage": true,
"report-dir": ".nyc_output/nyc_coverage",
"lines": 20,
"branches": 15,
"statements": 20,
"functions": 15,
"watermarks": {
"lines": [
80,
95
],
"functions": [
80,
95
],
"branches": [
80,
95
],
"statements": [
80,
95
]
},
"instrument": true,
"reporter": [
"lcov",
"text",
"text-summary"
],
"sourceMap": true,
"extension": [
".js",
".ts",
".tsx"
],
"include": [
"src/**/*.js",
"dist/src/**/*.js"
],
"exclude": [
"dist/src/contract/*.js",
"dist/src/schemas/*.js",
"dist/src/interfaces/*.js",
"dist/src/controllers/metadata.js",
"**/**/*.spec.js",
"docker_volumes",
"config",
"DB_Setup",
"public"
]
}