tsconfig.json
827 bytes
| 1 | { |
|---|---|
| 2 | "compilerOptions": { |
| 3 | "target": "ES2022", |
| 4 | "lib": ["dom", "dom.iterable", "ES2022"], |
| 5 | "allowJs": true, |
| 6 | "skipLibCheck": true, |
| 7 | "strict": true, |
| 8 | "noUncheckedIndexedAccess": true, |
| 9 | "noImplicitOverride": true, |
| 10 | "noUnusedLocals": true, |
| 11 | "noUnusedParameters": true, |
| 12 | "noFallthroughCasesInSwitch": true, |
| 13 | "forceConsistentCasingInFileNames": true, |
| 14 | "noEmit": true, |
| 15 | "esModuleInterop": true, |
| 16 | "module": "esnext", |
| 17 | "moduleResolution": "bundler", |
| 18 | "resolveJsonModule": true, |
| 19 | "isolatedModules": true, |
| 20 | "jsx": "preserve", |
| 21 | "incremental": true, |
| 22 | "verbatimModuleSyntax": false, |
| 23 | "plugins": [{ "name": "next" }], |
| 24 | "paths": { |
| 25 | "@/*": ["./src/*"] |
| 26 | } |
| 27 | }, |
| 28 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], |
| 29 | "exclude": ["node_modules"] |
| 30 | } |
| 31 | |