crush-level-web/tsconfig.json

43 lines
729 B
JSON
Raw Permalink Normal View History

2025-11-13 08:38:25 +00:00
{
"compilerOptions": {
"target": "ES2017",
2025-11-17 06:20:53 +00:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2025-11-13 08:38:25 +00:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
2025-11-17 06:20:53 +00:00
"jsx": "react-jsx",
2025-11-13 08:38:25 +00:00
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
2025-11-17 06:20:53 +00:00
"@/*": [
"./src/*"
]
2025-11-13 08:38:25 +00:00
}
},
2025-11-17 06:20:53 +00:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"src/types/**/*.d.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
2025-11-13 08:38:25 +00:00
}