Files
web/tsconfig.json

43 lines
755 B
JSON
Raw Normal View History

2025-03-04 10:10:35 +08:00
{
"compilerOptions": {
"target": "ES2017",
2026-05-15 16:56:05 +08:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2025-03-04 10:10:35 +08:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
2025-03-04 10:10:35 +08:00
"incremental": true,
2026-05-15 16:56:05 +08:00
"allowArbitraryExtensions": true,
2025-03-04 10:10:35 +08:00
"plugins": [
{
"name": "next"
}
],
"paths": {
2026-05-15 16:56:05 +08:00
"@/*": [
"./src/*"
]
2025-03-04 10:10:35 +08:00
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts",
"**/*.mts"
],
2026-05-15 16:56:05 +08:00
"exclude": [
"node_modules"
]
}