2024-11-27 14:57:46 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
|
|
"target": "ES2022",
|
|
|
|
"lib": ["ES2023"],
|
|
|
|
"module": "ESNext",
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
|
|
|
/* Bundler mode */
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"moduleDetection": "force",
|
|
|
|
"noEmit": true,
|
|
|
|
|
|
|
|
/* Linting */
|
|
|
|
"strict": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2024-11-27 15:16:08 +08:00
|
|
|
"noUncheckedSideEffectImports": true,
|
2024-11-28 10:01:56 +08:00
|
|
|
"types": ["element-plus/global"],
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
}
|
2024-11-27 14:57:46 +08:00
|
|
|
},
|
|
|
|
"include": ["vite.config.ts"]
|
|
|
|
}
|