ai/tsconfig.json

22 lines
418 B
JSON
Raw Normal View History

2018-08-04 01:42:03 +00:00
{
"compilerOptions": {
"noEmitOnError": true,
"noImplicitAny": false,
"noImplicitReturns": true,
2018-08-05 11:55:27 +00:00
"noImplicitThis": true,
2018-08-04 01:42:03 +00:00
"noFallthroughCasesInSwitch": true,
"experimentalDecorators": true,
"sourceMap": false,
2018-08-10 17:28:31 +00:00
"target": "es6",
2018-08-04 01:42:03 +00:00
"module": "commonjs",
"removeComments": false,
"noLib": false,
"outDir": "built",
"rootDir": "src"
},
"compileOnSave": false,
"include": [
"./src/**/*.ts"
]
}