mirror of
https://github.com/yangzongzhuan/RuoYi-Vue3.git
synced 2026-02-27 01:01:11 +08:00
41 lines
901 B
JSON
41 lines
901 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["esnext", "dom"],
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
|
|
// 严格性和类型检查相关配置
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
// 模块和兼容性相关配置
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
|
|
// 调试和兼容性相关配置
|
|
"sourceMap": true,
|
|
"useDefineForClassFields": true,
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
|
|
// 类型声明相关配置
|
|
"types": ["node", "vite/client", "element-plus/global"]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.vue",
|
|
"vite/**/*.ts",
|
|
"auto-imports.d.ts",
|
|
"vite.config.ts"
|
|
],
|
|
"exclude": ["node_modules", "dist", "src/**/*.js"]
|
|
}
|
|
|