From cf86bef110e64ee5471f588dbb28ffea7dc01a35 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 19 Mar 2024 10:39:48 +0100 Subject: [PATCH] build: target ESNext in tsconfig.json MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 0107ea53..0bc569f3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,9 +1,9 @@ { "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { - "target": "es2022", + "target": "ESNext", "module": "NodeNext", - "lib": ["es2022"], + "lib": ["ESNext"], "removeComments": true, "strict": true, -- 2.34.1