赞
踩
“include”:[ “./**/*” ], “exclude”:[
], “extends”:[
], “files”:[
], “compilerOtions”:{ “strict”:true, //所有严格检查的开关 “target”:“es6”, //es版本 “module”:“es6”, //模块化规范
//“lib”:[], //库 //“outDir”:“./dist”, //指定编译后的文件位置
//“outFile”:“./dist/app.js”, //将全局作用域中的代码合并为一个文件
“allowJs”:false, //是否对JS文件进行编译, 默认false
“checkJs”:true, //是否检查JS文件是否符合语法规范
“removeComments”:false, //是否移除备注 “noEmit”:false,
//不生成编译后的文件 “noEmitOnError”:true, //当有错误的时候不生成编译后的文件
“alwaysStrict”:true, //设置编译后的文件是否使用严格模式
“noImplicitAny”:true, //不允许隐式ANY类型
“noImplicitThis”:true, //不允许不明确的this
“strictNullChecks”:true //严格检查空值
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。