From 78534995280b69ec3531c636cadb058f9d71ce4b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Wed, 11 May 2022 17:01:35 +0200 Subject: [PATCH] Target es2019 in tsconfig.json see WoltLab/WCF#4595 --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 789895b..69fdae6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,13 +4,13 @@ "ts/**/*" ], "compilerOptions": { - "target": "es2017", + "target": "es2019", "module": "amd", "rootDir": "ts/", "outDir": "files/js/", "lib": [ "dom", - "es2017" + "es2019" ], "strictNullChecks": true, "moduleResolution": "node", -- 2.20.1