From 46d1596dce8f4d504d5d25f85e9679d30a24ce0f Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Tue, 19 May 2026 09:01:51 +0200 Subject: [PATCH] fix: update tsconfig target from deprecated ES5 to ES2017 --- app/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/tsconfig.json b/app/tsconfig.json index e59724b..c133409 100644 --- a/app/tsconfig.json +++ b/app/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "es5", + "target": "ES2017", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true,