ai/tsconfig.json
syuilo 1a2ede3764 ✌️
2018-08-04 10:42:03 +09:00

21 lines
395 B
JSON

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