1 Star 0 Fork 0

we_coder/ts-app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.json 536 Bytes
一键复制 编辑 原始数据 按行查看 历史
杨波 提交于 2019-11-01 13:53 +08:00 . 初始化ts项目
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/",// 打包到的目录
"sourceMap": true,// 是否生成sourceMap(用于浏览器调试)
"noImplicitAny": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"module": "esnext",
"target": "es5",// 转化成的目标语言
"baseUrl": "./",
"lib": [
"dom",
"es2015"
],
"jsx": "react",
"allowJs": false
},
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],// 要打包的文件
"exclude": [
"node_modules",
"*.test.ts"
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/we_coder/ts-app.git
git@gitee.com:we_coder/ts-app.git
we_coder
ts-app
ts-app
master

搜索帮助