From 94e96497548f17e58dadd8e5f5d7a1a0cc3e9f30 Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Thu, 21 Dec 2023 17:39:40 +0100 Subject: [PATCH] Upgrade Typescript config to target ES6 --- client/tsconfig.app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/tsconfig.app.json b/client/tsconfig.app.json index 4a672b84..44df4e5b 100644 --- a/client/tsconfig.app.json +++ b/client/tsconfig.app.json @@ -4,7 +4,7 @@ "checkJs": false, "resolveJsonModule": true, "lib": ["es2017", "dom"], - "target": "es5", + "target": "es6", "module": "es2022", "strict": true, "moduleResolution": "node",