1 Star 2 Fork 0

Zong/Vzig-Admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.json 904 Bytes
一键复制 编辑 原始数据 按行查看 历史
Zong 提交于 2022-12-10 12:59 . feat:搭建测试环境
{
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
// 解析非相对模块名的基准目录
"baseUrl": "./",
// 模块名到基于 baseUrl的路径映射的列表。
"paths": {
"@": ["src"],
"@/*": ["src/*"]
},
// 跳过库检查,解决打包失败
"skipLibCheck": true
// "typeRoots": ["./node_modules/@types", "./src/typings"]
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"vite.config.ts",
"__test__/**/*.ts",
"__test__/**/*.vue",
"__test__/**/*.tsx"
],
"exclude": ["node_modules", "dist", "**/*.js"]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zong-james/zong-admin.git
git@gitee.com:zong-james/zong-admin.git
zong-james
zong-admin
Vzig-Admin
master

搜索帮助