From: Jérôme Benoit Date: Tue, 19 Mar 2024 09:39:48 +0000 (+0100) Subject: build: target ESNext in tsconfig.json X-Git-Tag: v1.3.1~34 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=cf86bef110e64ee5471f588dbb28ffea7dc01a35;p=e-mobility-charging-stations-simulator.git build: target ESNext in tsconfig.json Signed-off-by: Jérôme Benoit --- 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,