From 91352d0d3c84ee90540b2e693e375314130e58d8 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Sat, 11 Apr 2020 11:28:43 +0200 Subject: [PATCH] tsconfig.json: Sequelize classes need ES6, debugging needs source maps Signed-off-by: David Mehren --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 6d88a11ee..9eed606cb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,11 +3,12 @@ "outDir": "./built", "allowJs": true, "strictNullChecks": true, - "target": "es5", + "target": "es6", "module": "commonjs", "esModuleInterop": true, "experimentalDecorators": true, - "emitDecoratorMetadata": true + "emitDecoratorMetadata": true, + "sourceMap": true }, "include": [ "./lib/**/*"