1 Star 1 Fork 0

银河六队/earMonster

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.base.json 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
02359935 提交于 2023-05-24 13:07 . 更改项目名称
{
"compilerOptions": {
"declaration": true,
"target": "esnext",
"module": "esnext",
"jsx": "preserve",
"importHelpers": true, // tslib 导入辅助工具函数
"moduleResolution": "node",
"experimentalDecorators": true, // 启用装饰器
"esModuleInterop": true,
"allowSyntheticDefaultImports": true, // 允许从没有设置默认导出的模块中默认导入
"downlevelIteration": true, // 降级遍历器实现,如果目标源是es3/5,那么遍历器会有降级的实现
"noUnusedLocals": true, // 检查只声明、未使用的局部变量(只提示不报错)
"noUnusedParameters": true, // 检查未使用的函数参数(只提示不报错)
"sourceMap": false,
"removeComments": true,
"baseUrl": ".",
"typeRoots": ["./node_modules/@types/", "./node_modules/vue/types"], // 包含类型声明的文件列表
"strict": false,
"strictFunctionTypes": false,
"noImplicitAny": false, // 在表达式和声明上有隐含的 any类型时报错
"noImplicitThis": false, // "this"表达式上有隐含的 any类型时报错
"pretty": true, // 给错误和消息设置样式,使用颜色和上下文。
"types": ["webpack-env", "jest"],
"paths": {
"@ear-monster/*": ["packages/*"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/duochan/earMonster.git
[email protected]:duochan/earMonster.git
duochan
earMonster
earMonster
master

搜索帮助