-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.c8rc.json
More file actions
27 lines (27 loc) · 652 Bytes
/
.c8rc.json
File metadata and controls
27 lines (27 loc) · 652 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
{
"all": true,
"src": [
"src"
],
"exclude": [
"**/*.web.ts",
"**/*.{spec,test}.{js,cjs,mjs}",
"**/*.d.ts",
"**/*.cache/**",
"{,CI_}reports/**",
"test{,s}/**",
"tools/**",
"**/{ava,babel,nyc}.config.{js,cjs,mjs}",
"**/jest.config.{js,cjs,mjs,ts}",
"**/{karma,rollup,webpack}.config.js",
"**/.{eslint,mocha}rc.{js,cjs,mjs}",
"**/eslint.config.{js,cjs,mjs}"
],
"reporter": ["text", "clover", "html"],
"reporterOptions": {
"clover": {"file": "coverage.clover.xml"},
"html": {"subdir": "coverage.html"}
},
"reports-dir": "./reports/coverage",
"temp-directory": "./.c8.cache"
}