{ "compileOnSave": true, "compilerOptions": { "target": "es2017", "module": "commonjs", "strict": false, "noImplicitAny": false, "experimentalDecorators": true, "emitDecoratorMetadata": true, "allowJs": false, "pretty": true, "noEmitOnError": false, "noUnusedLocals": false, "noUnusedParameters": false, "allowUnreachableCode": true, "allowUnusedLabels": true, "strictPropertyInitialization": false, "noFallthroughCasesInSwitch": false, "skipLibCheck": true, "skipDefaultLibCheck": true, "strictNullChecks": false, "inlineSourceMap": true, "importHelpers": true, "baseUrl": ".", "paths": { "@db/*": ["../shared/db/*"], "@consts": ["../shared/consts"], "@domain/*": ["../shared/domain/*"], "@resource/*": ["../shared/resource/*"], "@pubUtils/*": ["../shared/pubUtils/*"] } }, "include": [ "app/**/*", // 只检查app目录下的所有文件(按需修改) "typings/**/*" ], "exclude": [ "app/public", "app/views", "node_modules", "**/node_modules/**" ] }