tsconfig.json: Sequelize classes need ES6, debugging needs source maps

Signed-off-by: David Mehren <dmehren1@gmail.com>
This commit is contained in:
David Mehren 2020-04-11 11:28:43 +02:00
parent 77e84a18ee
commit 91352d0d3c
No known key found for this signature in database
GPG key ID: 6017AF117F9756CB

View file

@ -3,11 +3,12 @@
"outDir": "./built", "outDir": "./built",
"allowJs": true, "allowJs": true,
"strictNullChecks": true, "strictNullChecks": true,
"target": "es5", "target": "es6",
"module": "commonjs", "module": "commonjs",
"esModuleInterop": true, "esModuleInterop": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"emitDecoratorMetadata": true "emitDecoratorMetadata": true,
"sourceMap": true
}, },
"include": [ "include": [
"./lib/**/*" "./lib/**/*"