ai/tsconfig.json
2018-08-11 02:28:31 +09:00

22 lines
418 B
JSON

{
"compilerOptions": {
"noEmitOnError": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"experimentalDecorators": true,
"sourceMap": false,
"target": "es6",
"module": "commonjs",
"removeComments": false,
"noLib": false,
"outDir": "built",
"rootDir": "src"
},
"compileOnSave": false,
"include": [
"./src/**/*.ts"
]
}