| { |
| "compilerOptions": { |
| "target": "ES2022", |
| "lib": ["dom", "dom.iterable", "ES2022"], |
| "allowJs": false, |
| "skipLibCheck": true, |
| "strict": true, |
| "noUncheckedIndexedAccess": true, |
| "noImplicitOverride": true, |
| "noUnusedLocals": true, |
| "noUnusedParameters": true, |
| "exactOptionalPropertyTypes": false, |
| "noEmit": true, |
| "esModuleInterop": true, |
| "module": "esnext", |
| "moduleResolution": "bundler", |
| "resolveJsonModule": true, |
| "isolatedModules": true, |
| "jsx": "preserve", |
| "incremental": true, |
| "plugins": [{ "name": "next" }], |
| "paths": { "@/*": ["./*"] } |
| }, |
| "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], |
| "exclude": ["node_modules"] |
| } |
|
|