From 6cd461ae4e3e4265093c912fa872385db49cb775 Mon Sep 17 00:00:00 2001 From: Ayo Ayco Date: Sat, 22 Mar 2025 11:38:03 +0100 Subject: [PATCH] chore: set tsc target to ES2022 --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 618fa34..5a00557 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,6 @@ { "compilerOptions": { + "target": "ES2022", "allowJs": true, "outDir": "dist", "declaration": true,