From 585156e65ff7682427e83bd32096a36f8f126aff Mon Sep 17 00:00:00 2001 From: Rubilmax Date: Tue, 17 Oct 2023 19:08:07 +0200 Subject: [PATCH] fix(tsconfig): use es2020 target --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 51312f2..9226484 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "es6", + "target": "es2020", "module": "nodenext", "moduleResolution": "nodenext", "outDir": "lib",