From 77bc184f43cc30dc835c3550a6ada7f6db6ba94b Mon Sep 17 00:00:00 2001 From: imperosol Date: Mon, 3 Mar 2025 13:17:27 +0100 Subject: [PATCH] change ts target to es2020 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Les navigateurs principaux implémentent presque toutes les fonctionnalités de la norme es2020. --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index a93da92a..5f402df3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,7 @@ "sourceMap": true, "noImplicitAny": true, "module": "es6", - "target": "es6", + "target": "es2020", "allowJs": true, "moduleResolution": "node", "experimentalDecorators": true,