nextui/tsconfig.json
Ryo Matsukawa 8de427b81a
fix: prevent test matcher warning (#3893)
* fix: prevent test matcher warning

* chore: add node types

* chore: update Jest related packages

* chore: run pnpm install
2024-10-29 00:44:08 +08:00

25 lines
680 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"types": ["@testing-library/jest-dom", "node"],
"lib": ["dom", "esnext"],
"declaration": true,
"sourceMap": true,
"moduleResolution": "node",
"skipLibCheck": true,
"strict": true,
"isolatedModules": true,
"noFallthroughCasesInSwitch": true,
"jsx": "react-jsx",
"esModuleInterop": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"noImplicitAny": false
},
"include": ["packages"],
"exclude": ["**/node_modules", "**/dist", "**/.turbo"]
}