加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.json 717 Bytes
一键复制 编辑 原始数据 按行查看 历史
后盾人 提交于 2022-07-16 15:23 . fix:不用分层了
{
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"#/*": ["./types/*"]
},
"types": ["element-plus/global", "echarts", "lodash", "web-bluetooth", "naive-ui/volar"]
},
"include": [
"vite.config.ts",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.vue",
"types/*.d.ts",
"types/*.ts",
],
"exclude": ["node_modules", "dist"]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化