From 50c732e008fa742213c3fda2ed55a4f712af47e0 Mon Sep 17 00:00:00 2001 From: Andrea Alberti Date: Sat, 2 Nov 2024 09:50:16 +0100 Subject: [PATCH] small changes --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 681cd3a..2ca4df5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,7 @@ "inlineSourceMap": true, "inlineSources": true, "module": "ESNext", // or "CommonJS" if you are targeting Node.js - "target": "ES2020", // Modern target for better browser support + "target": "ES2022", // Modern target for better browser support "allowJs": true, "noImplicitAny": true, "moduleResolution": "node", @@ -15,7 +15,7 @@ "strict": true, // Enforces strict type checking options "lib": [ "DOM", - "ES2020" + "ES2022" ], //"jsx": "react-jsx", // Required by React },