2025-07-10 11:24:06 +08:00
|
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"lib": ["ES2023"],
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
|
|
|
|
|
/* Bundler mode */
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
|
|
|
|
|
/* Linting */
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
2025-07-14 17:14:32 +08:00
|
|
|
|
"erasableSyntaxOnly": false,
|
2025-07-10 11:24:06 +08:00
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2025-07-14 17:14:32 +08:00
|
|
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
|
"baseUrl": "./", // 解析非相对模块的基地址,默认是当前目录
|
|
|
|
|
"paths": {
|
|
|
|
|
//路径映射,相对于baseUrl
|
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
|
}
|
2025-07-10 11:24:06 +08:00
|
|
|
|
},
|
|
|
|
|
"include": ["vite.config.ts"]
|
|
|
|
|
}
|