From 452579dafb927c0766b6938dd5f7f5db4baf1b4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan-Otto=20Kr=C3=B6pke?= Date: Fri, 3 Apr 2026 23:49:01 +0200 Subject: [PATCH] chore: switch to ES2025 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jan-Otto Kröpke --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 5278bc2..eba3845 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,7 @@ "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "isolatedModules": true, - "lib": ["ES2022"], + "lib": ["ES2024"], "module": "NodeNext", "moduleResolution": "NodeNext", "newLine": "lf", @@ -20,7 +20,7 @@ "rootDir": "./", "strict": true, "strictNullChecks": true, - "target": "ES2022" + "target": "ES2024" }, "exclude": ["__fixtures__", "__tests__", "coverage", "dist", "node_modules"], "include": ["src"]