Files
websitebuilder/.nycrc
Kunthawat Greethong 4d1bb6892b
Some checks failed
CI / build (push) Has been cancelled
CI / test (push) Has been cancelled
CI / e2e (push) Has been cancelled
CI / lint (push) Has been cancelled
Add websitebuilder app
2026-01-26 12:50:12 +07:00

33 lines
531 B
JSON

{
"all": true,
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"node_modules/",
"tests/",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.spec.ts",
"**/*.spec.tsx",
"**/types/**",
"**/dist/**",
"**/.next/**",
"**/coverage/**",
"src/app/**",
"src/components/ui/**"
],
"reporter": [
"text",
"json",
"html",
"lcov"
],
"report-dir": "./coverage",
"check-coverage": true,
"lines": 80,
"functions": 80,
"branches": 80,
"statements": 80
}