ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
27 lines • 612 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"
]
}