From 2ec507f8449b19aa027c85f2840f2c61fd1c73e2 Mon Sep 17 00:00:00 2001 From: glM26 <35031631+glM26@users.noreply.github.com> Date: Fri, 14 Feb 2025 08:10:51 +0100 Subject: [PATCH] fix: update target in tsconfig.json to es6 Some features in newer versions of dependencies require at least es6 --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 45fe93b..3ba3db3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,7 @@ "DOM", "ES2019.String" ], - "target": "es5", + "target": "es6", "module": "commonjs", "downlevelIteration": true, "moduleResolution": "node", @@ -23,4 +23,4 @@ "**/*.spec.ts", "**/example.ts" ] -} \ No newline at end of file +}