31 lines
798 B
JSON
31 lines
798 B
JSON
{
|
||
"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,
|
||
"erasableSyntaxOnly": false,
|
||
"noFallthroughCasesInSwitch": true,
|
||
"noUncheckedSideEffectImports": true,
|
||
"baseUrl": "./", // 解析非相对模块的基地址,默认是当前目录
|
||
"paths": {
|
||
//路径映射,相对于baseUrl
|
||
"@/*": ["src/*"]
|
||
}
|
||
},
|
||
"include": ["vite.config.ts"]
|
||
}
|