From ce4996ae9d48a797d9da5d2753943b704f65d244 Mon Sep 17 00:00:00 2001 From: CL TheDreWen Date: Fri, 21 Nov 2025 08:40:11 +0100 Subject: [PATCH] Update TypeScript target and library to ES2024 --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 6c765ee..0c33105 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,9 +2,9 @@ "compilerOptions": { "outDir": "./dist", "rootDir": "./src", - "target": "ES2020", + "target": "es2024", "module": "CommonJS", - "lib": ["ES2020"], + "lib": ["ES2024"], "moduleResolution": "node", "esModuleInterop": true, "allowSyntheticDefaultImports": true,