-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.nycrc
49 lines (49 loc) · 760 Bytes
/
.nycrc
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
{
"exclude": [
"**/node_modules/**",
"**/dist/**",
"**/build/**",
"**/es5/**",
"**/esm/**",
"**/docs/**",
"**/coverage/**",
"**/src/job-applications/**",
"**/src/letters/**",
"**/src/resumes/**",
"**/src/resume-custom-content/**",
"**/.nyc_output/**",
"**/test/**",
"packages/*/*.js",
"*.js"
],
"reporter": [
"text-summary",
"lcov"
],
"require": [
"./babel.register.js"
],
"cache": true,
"all": true,
"check-coverage": false,
"sourceMap": false,
"instrument": false,
"watermarks": {
"lines": [
70,
90
],
"functions": [
70,
90
],
"branches": [
70,
90
],
"statements": [
70,
90
]
}
}