| { | |
| "compilerOptions": { | |
| "target": "ES2022", | |
| "lib": [ | |
| "DOM", | |
| "DOM.Iterable", | |
| "ES2022" | |
| ], | |
| "allowJs": false, | |
| "skipLibCheck": true, | |
| "esModuleInterop": true, | |
| "allowSyntheticDefaultImports": true, | |
| "strict": true, | |
| "forceConsistentCasingInFileNames": true, | |
| "module": "ESNext", | |
| "moduleResolution": "Bundler", | |
| "resolveJsonModule": true, | |
| "isolatedModules": true, | |
| "noEmit": true, | |
| "jsx": "react-jsx", | |
| "incremental": true, | |
| "baseUrl": ".", | |
| "paths": { | |
| "@/*": ["./*"] | |
| }, | |
| "plugins": [ | |
| { | |
| "name": "next" | |
| } | |
| ] | |
| }, | |
| "include": [ | |
| "next-env.d.ts", | |
| "**/*.ts", | |
| "**/*.tsx", | |
| ".next/types/**/*.ts", | |
| ".next/dev/types/**/*.ts" | |
| ], | |
| "exclude": [ | |
| "node_modules" | |
| ] | |
| } | |