ai/tsconfig.json

22 lines
421 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,
2019-05-10 11:52:54 +00:00
"target": "es2017",
2018-08-04 01:42:03 +00:00
"module": "commonjs",
"removeComments": false,
"noLib": false,
"outDir": "built",
"rootDir": "src"
},
"compileOnSave": false,
"include": [
"./src/**/*.ts"
]
}