Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.

Commit b2667c4

Browse files
save working version
Signed-off-by: Carlos Feria <2582866+carlosthe19916@users.noreply.github.com>
1 parent 3d0b15f commit b2667c4

File tree

9 files changed

+1934
-25
lines changed

9 files changed

+1934
-25
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ node_modules/
88

99
.devcontainer/devcontainer.json
1010
.features-gen/
11+
12+
# Coverage directories
13+
/coverage/
14+
/.nyc_output/

.nycrc.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"temp-dir": "./.nyc_output",
3+
"report-dir": "./coverage",
4+
"reporter": [
5+
"text",
6+
"html",
7+
"lcov"
8+
],
9+
"include": [
10+
"/workspace/client/src/**/*.js",
11+
"/workspace/client/src/**/*.ts",
12+
"/workspace/client/src/**/*.jsx",
13+
"/workspace/client/src/**/*.tsx",
14+
"/workspace/common/**/*.js",
15+
"/workspace/common/**/*.ts",
16+
"/workspace/common/**/*.jsx",
17+
"/workspace/common/**/*.tsx"
18+
],
19+
"exclude": [
20+
"coverage/**",
21+
".nyc_output/**",
22+
"**/node_modules/**",
23+
"tests/**",
24+
"*.config.*",
25+
"*.setup.*",
26+
"*.teardown.*",
27+
"**/dist/**",
28+
"**/build/**"
29+
],
30+
"all": false,
31+
"cache": false,
32+
"check-coverage": false,
33+
"skip-empty": true,
34+
"skip-full": false,
35+
"statements": 80,
36+
"branches": 80,
37+
"functions": 80,
38+
"lines": 80
39+
}

0 commit comments

Comments
 (0)