ai/tsconfig.json

21 lines
395 B
JSON
Raw Normal View History

2018-08-04 01:42:03 +00:00
{
"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"
]
}