2026-07-07 10:29:28 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
|
|
|
"target": "es2023",
|
|
|
|
|
"lib": ["ES2023", "DOM"],
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"types": ["vite/client"],
|
|
|
|
|
"allowArbitraryExtensions": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
|
|
|
|
|
/* Bundler mode */
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
|
|
|
|
|
/* Linting */
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"erasableSyntaxOnly": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"paths": {
|
2026-07-07 14:40:09 +08:00
|
|
|
"@/*": ["./src/*"],
|
|
|
|
|
"@/components/*": ["./src/components/*"],
|
|
|
|
|
"@/lib/*": ["./src/lib/*"],
|
|
|
|
|
"@/hooks/*": ["./src/hooks/*"],
|
|
|
|
|
"@/api/*": ["./src/api/*"],
|
|
|
|
|
"@/shared/*": ["./src/shared/*"]
|
2026-07-07 10:29:28 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"include": ["src"]
|
2026-07-07 14:40:09 +08:00
|
|
|
}
|