From e548820c8b8f24b22916f1b3533fbf02c3d13276 Mon Sep 17 00:00:00 2001 From: Neriya Cohen Date: Sun, 8 Dec 2024 00:14:29 +0200 Subject: [PATCH] Update TypeScript configuration to target ES2015 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index dd3659e..b16d80e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "target": "es5", - "lib": ["ES5"], + "lib": ["ES2015"], "module": "commonjs", "esModuleInterop": true, "forceConsistentCasingInFileNames": true,