1 Star 0 Fork 10

文达 / w-plus

forked from 王庆 / w-plus 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tsconfig.json 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
王庆 提交于 2021-10-22 15:35 . 环境搭建
{
"compilerOptions": {
"module": "ESNext", // 打包模块类型ESNext
"declaration": false, // 默认不要声明文件
"noImplicitAny": false, // 支持类型不标注可以默认any
"removeComments": true, // 删除注释
"moduleResolution": "node", // 按照node模块来解析
"esModuleInterop": true, // 支持es6,commonjs模块
"jsx": "preserve", // jsx 不转
"noLib": false, // 不处理类库
"target": "es6", // 遵循es6版本
"sourceMap": true,
"lib": [
// 编译时用的库
"ESNext",
"DOM"
],
"allowSyntheticDefaultImports": true, // 允许没有导出的模块中导入
"experimentalDecorators": true, // 装饰器语法
"forceConsistentCasingInFileNames": true, // 强制区分大小写
"resolveJsonModule": true, // 解析json模块
"strict": true, // 是否启动严格模式
"skipLibCheck": true // 跳过类库检测
},
"exclude": [
// 排除掉哪些类库
"node_modules",
"**/__tests__",
"w-plus/**"
]
}
1
https://gitee.com/wen-da-da/w-plus.git
git@gitee.com:wen-da-da/w-plus.git
wen-da-da
w-plus
w-plus
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891