1 Star 0 Fork 51

als2014/t-ui-plus

forked from wocwin/t-ui-plus 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.json 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
wocwin 提交于 2023-06-20 15:52 . fix:清除多余代码
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"noImplicitAny": false, // 隐式具有“any”类型
"module": "ESNext",
"moduleResolution": "Node",
"strict": true,
"jsx": "preserve",
"types": [
"vite/client"
],
// 如果编译器无法根据变量的使用来判断类型时,将用 any 类型代替
// "suppressImplicitAnyIndexErrors": true,
// 允许从没有设置默认导出的模块中默认导入。这并不影响代码的输出,仅为了类型检查。
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": [
"ESNext",
"DOM"
],
// 解析非相对模块名的基准目录
"baseUrl": "./",
// 模块名到基于 baseUrl的路径映射的列表。
"paths": {
"@": [
"packages"
],
"@/*": [
"packages/*"
]
},
"skipLibCheck": true
},
"include": [
"packages/**/*.ts",
"packages/**/*.d.ts",
"packages/**/*.tsx",
"packages/**/*.vue"
],
"exclude": [
"node_modules"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/als2014/t-ui-plus.git
git@gitee.com:als2014/t-ui-plus.git
als2014
t-ui-plus
t-ui-plus
dev

搜索帮助