| { | |
| "compilerOptions": { | |
| "lib": ["dom", "dom.iterable", "esnext"], | |
| "allowJs": true, | |
| "skipLibCheck": true, | |
| "strict": true, | |
| "noEmit": true, | |
| "esModuleInterop": true, | |
| "module": "esnext", | |
| "moduleResolution": "bundler", | |
| "target": "esnext", | |
| "resolveJsonModule": true, | |
| "isolatedModules": true, | |
| "jsx": "preserve", | |
| "jsxImportSource": "react", | |
| "incremental": true, | |
| "customConditions": ["dev"], | |
| "baseUrl": ".", | |
| "plugins": [ | |
| { | |
| "name": "next" | |
| } | |
| ], | |
| "paths": { | |
| "@/*": ["./*"], | |
| "@chakra-ui/react": ["../../packages/react/src"], | |
| "@chakra-ui/charts": ["../../packages/charts/src"], | |
| "compositions/*": ["../compositions/src/*"] | |
| } | |
| }, | |
| "include": [ | |
| "next-env.d.ts", | |
| "**/*.ts", | |
| "**/*.tsx", | |
| ".velite", | |
| ".next/types/**/*.ts", | |
| "../compositions", | |
| "next.config.ts" | |
| ], | |
| "exclude": ["node_modules"] | |
| } | |