31 lines
746 B
JSON
31 lines
746 B
JSON
{
|
||
"compilerOptions": {
|
||
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
||
"target": "es2023",
|
||
"lib": ["ES2023", "DOM"],
|
||
"module": "esnext",
|
||
"types": ["vite/client"],
|
||
"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,
|
||
|
||
/* Path alias for shadcn / 内部导入 - 不用 baseUrl(TS 6 弃用) */
|
||
"paths": {
|
||
"@/*": ["./src/*"]
|
||
}
|
||
},
|
||
"include": ["src"]
|
||
}
|