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