mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
* fix: prevent test matcher warning * chore: add node types * chore: update Jest related packages * chore: run pnpm install
25 lines
680 B
JSON
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"]
|
|
}
|