xpeditis2.0/apps/frontend/tsconfig.test.json
David 14c5073b12
All checks were successful
Dev CI / Backend — Lint (push) Successful in 10m23s
Dev CI / Frontend — Lint & Type-check (push) Successful in 10m57s
Dev CI / Backend — Unit Tests (push) Successful in 10m12s
Dev CI / Frontend — Unit Tests (push) Successful in 10m33s
Dev CI / Notify Failure (push) Has been skipped
fix types check
2026-04-04 15:28:13 +02:00

19 lines
395 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"types": ["jest", "@testing-library/jest-dom", "node"],
"jsx": "react-jsx"
},
"include": [
"next-env.d.ts",
"jest.setup.ts",
"src/__tests__/**/*.ts",
"src/__tests__/**/*.tsx",
"src/**/*.test.ts",
"src/**/*.test.tsx",
"src/**/*.spec.ts",
"src/**/*.spec.tsx"
],
"exclude": ["node_modules"]
}