first commit
This commit is contained in:
19
mApi/tsconfig.json
Executable file
19
mApi/tsconfig.json
Executable file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"lib":["es6"],
|
||||
"module": "commonjs", //指定生成哪个模块系统代码
|
||||
"target": "es5", //目标代码类型
|
||||
"noImplicitAny": false, //在表达式和声明上有隐含的'any'类型时报错。
|
||||
"sourceMap": false, //用于debug
|
||||
"rootDir":"./src", //仅用来控制输出的目录结构--outDir。
|
||||
"outDir":"./build", //重定向输出目录。
|
||||
"watch":false //在监视模式下运行编译器。会监视输出文件,在它们改变时重新编译。
|
||||
},
|
||||
"include":[
|
||||
"src/**/*"
|
||||
],
|
||||
"exclude":[
|
||||
"views",
|
||||
"static"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user