bixi
Version:
企业级中后台前端解决方案
20 lines (19 loc) • 569 B
JSON
// TypeScript config file that will be used to compile the gulp tasks. The normal gulpfile will
// use TS-Node to compile the gulp tasks at runtime.
{
"compilerOptions": {
"suppressImplicitAnyIndexErrors": true,
"experimentalDecorators": true,
"lib": ["es2015", "dom", "es2016.array.include"],
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./dist",
"strictNullChecks": false,
"noEmitOnError": true,
"noImplicitAny": false,
"target": "es5",
"types": ["node"],
"baseUrl": "."
},
"files": ["**/*.ts"]
}