From b2178252e45fdc897a26e2651762a2a1b9f5f7a2 Mon Sep 17 00:00:00 2001 From: Kelvin Schoofs Date: Fri, 19 Mar 2021 16:35:07 +0100 Subject: [PATCH] Set tsconfig to target ES2019 --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 73b968c..25531c3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,10 +3,10 @@ "strictNullChecks": true, "module": "esnext", "moduleResolution": "node", - "target": "es6", + "target": "ES2019", "outDir": "out", "lib": [ - "es6" + "ES2019" ], "sourceMap": true, "rootDir": "src"