/ tsconfig.json
tsconfig.json
1 { 2 "compilerOptions": { 3 "lib": [ 4 "dom", 5 "dom.iterable", 6 "esnext" 7 ], 8 "allowJs": true, 9 "skipLibCheck": true, 10 "strict": true, 11 "noEmit": true, 12 "incremental": true, 13 "module": "esnext", 14 "esModuleInterop": true, 15 "moduleResolution": "bundler", 16 "resolveJsonModule": true, 17 "isolatedModules": true, 18 "jsx": "preserve", 19 "baseUrl": ".", 20 "paths": { 21 "@/*": ["./src/*"] 22 }, 23 "plugins": [ 24 { 25 "name": "next" 26 } 27 ] 28 }, 29 "include": [ 30 "next-env.d.ts", 31 ".next/types/**/*.ts", 32 "**/*.ts", 33 "**/*.tsx" 34 ], 35 "exclude": [ 36 "node_modules" 37 ] 38 }