1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| { // include用来指定哪些ts文件需要被编译 // **表示任意目录 // *表示任意文件(匹配0或多个字符) // ?匹配一个任意字符 "include": [ "./src/**/*" ],
// 定义需要排除在外的目录,默认情况下会排除node_modules,bower_components,jspm_packages和<outDir>目录 "exclude": [],
// 定义被继承的配置文件 // "extends": "",
// 指定被编译的文件列表 // "files": [],
// 编译器的选项 "compilerOptions": { // 设置ts代码编译的目标版本 "target": "es2015", // 设置编译后代码使用的模块化系统 "module": "amd", // 用来指定编译后文件所在的目录 "outDir": "./dist", // 用来将代码合并为一个文件(一般用的不多) // "outFile": "./dist/app.js", // 是否对js文件进行编译,默认是false "allowJs": true, // 是否检查js代码是否符合语法规范,默认是false "checkJs": true, // 是否移除注释,默认是false "removeComments": false, // 所有严格检查的总开关 "strict": true, // 用来设置编译后的文件是否使用严格模式,默认为false "alwaysStrict": true, // 不允许隐式any使用,默认值是false "noImplicitAny": true, // 不允许不明确类型的this,默认值是false "noImplicitThis": true, // 严格的检查空值,默认为false "strictNullChecks": true } }
|