-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy path.c8rc.json
More file actions
36 lines (36 loc) · 721 Bytes
/
.c8rc.json
File metadata and controls
36 lines (36 loc) · 721 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
{
"all": true,
"check-coverage": true,
"lines": 87,
"functions": 90,
"branches": 54,
"statements": 87,
"include": [
"src/**/*.ts"
],
"exclude": [
"src/app.ts",
"src/types/**/*.ts",
"src/**/*.test.ts",
"src/**/*.spec.ts",
"test/**/*",
"dist/**/*",
"**/*.d.ts",
"src/mcp/**/*.ts",
"src/controllers/MCPConfig.ts",
"src/services/database/api.ts",
"src/services/database/init.ts",
"src/services/database/retry.ts",
"src/services/queue/clock.ts",
"src/routes/health.ts",
"src/services/shutdown.ts",
"src/services/logger/index.ts"
],
"reporter": [
"text",
"text-summary",
"html",
"lcov"
],
"reports-dir": "coverage"
}