加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.json 467 Bytes
一键复制 编辑 原始数据 按行查看 历史
小王hs 提交于 2024-02-23 15:53 . 完善环境变量
{
// 编译排除的部分
"extends": "@vue/tsconfig/tsconfig.web.json",
// 需要编译的部分
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
// 配置项
"compilerOptions": {
// 项目的基本路径
"baseUrl": ".",
// 相对路径
"paths": {
"@/*": ["./src/*"]
},
"noImplicitAny": false,
"strictNullChecks": false,
"allowJs": true,
"lib": ["ES2021","dom"]
},
"references": [{
"path": "./tsconfig.config.json"
}]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化