{ // ** 任意目录 // * 任意文件 "include": [ "./src/**/*" ], // "exclude": [ // "./src/**/*" // ] "compilerOptions": { // 指定ts编译成js的版本 "target": "es2015", "module": "es2015", // lib规定可以使用什么库 "lib": [ "DOM", "ESNext" ], "outDir": "./dist", "allowJs": false, "checkJs": false, "removeComments": true, // 严格模式 "strict": false, // "noImplicitThis": true // "noImplicitAny": false // "alwaysStrict": true "strictNullChecks": true } }