| { | |
| "compilerOptions": { | |
| "esModuleInterop": true, | |
| "forceConsistentCasingInFileNames": true, | |
| "isolatedModules": true, | |
| "jsx": "react-jsx", | |
| "lib": ["dom", "esnext"], | |
| "module": "ESNext", | |
| "moduleResolution": "Bundler", | |
| "noEmit": true, | |
| "noFallthroughCasesInSwitch": true, | |
| "noUnusedLocals": true, | |
| "noUnusedParameters": true, | |
| "resolveJsonModule": true, | |
| "skipLibCheck": true, | |
| "strict": true, | |
| "target": "esnext", | |
| "allowSyntheticDefaultImports": true, | |
| "incremental": true, | |
| "customConditions": ["dev"], | |
| "paths": { | |
| "@chakra-ui/react": ["../../packages/react/src"] | |
| } | |
| }, | |
| "include": [ | |
| "**/*.ts", | |
| "**/*.tsx", | |
| ".storybook/**/*.ts", | |
| ".storybook/**/*.tsx" | |
| ], | |
| "exclude": ["node_modules"] | |
| } | |