Files
vue3-element-admin/tsconfig.json
郝先瑞 9e62dd8847 refactor(tsconfig.json): 删除vite-plugin-svg-icons/client类型声明
Former-commit-id: 95afa4c28fc88c5108cb7025c57c99ff2f77a17d
2022-04-15 00:34:37 +08:00

23 lines
643 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
},
"allowSyntheticDefaultImports": true, // 默认导入
"skipLibCheck": true, // 不对第三方依赖类型检查 element-plus 生产打包报错
"types": ["element-plus/global"]
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
}