Files
cstb-next/tsconfig.json

46 lines
792 B
JSON
Raw Permalink Normal View History

2024-09-20 02:28:25 +08:00
{
"compilerOptions": {
2024-09-26 16:58:40 +08:00
"target": "ESNext",
2024-09-20 23:15:42 +08:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2024-09-20 02:28:25 +08:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
2024-11-11 11:19:29 +08:00
"module": "ESNext",
2024-09-20 02:28:25 +08:00
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
2025-11-05 00:22:03 +08:00
"jsx": "react-jsx",
2024-09-20 02:28:25 +08:00
"incremental": true,
"baseUrl": ".",
"paths": {
2024-09-20 23:15:42 +08:00
"@/*": [
"src/*"
]
},
"plugins": [
{
"name": "next"
}
]
2024-09-20 02:28:25 +08:00
},
2024-09-20 23:15:42 +08:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"*.js",
2025-11-05 00:22:03 +08:00
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
2024-09-20 23:15:42 +08:00
],
"exclude": [
"node_modules",
"src-tauri"
]
2024-09-26 16:58:40 +08:00
}