| { | |
| "compilerOptions": { | |
| "target": "esnext", | |
| "module": "esnext", | |
| "jsx": "preserve", | |
| "lib": ["dom", "es2017"], | |
| "baseUrl": ".", | |
| "moduleResolution": "node", | |
| "strict": true, | |
| "allowJs": true, | |
| "noEmit": true, | |
| "allowSyntheticDefaultImports": true, | |
| "esModuleInterop": true, | |
| "skipLibCheck": true, | |
| "noUnusedLocals": true, | |
| "noUnusedParameters": true, | |
| "isolatedModules": true, | |
| "removeComments": false, | |
| "preserveConstEnums": true, | |
| "sourceMap": true, | |
| "forceConsistentCasingInFileNames": true, | |
| "resolveJsonModule": true, | |
| "incremental": true | |
| }, | |
| "exclude": ["dist", ".next", "out", "next.config.js"], | |
| "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"] | |
| } | |