From 630320ff6d39a4504cb0cbf0ed4fc565884f97f9 Mon Sep 17 00:00:00 2001 From: kirillgroshkov Date: Tue, 29 Oct 2024 23:32:25 +0100 Subject: [PATCH] feat: tsconfig target=es2023 (was: es2022) --- cfg/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfg/tsconfig.json b/cfg/tsconfig.json index 9c18723..c8e1663 100644 --- a/cfg/tsconfig.json +++ b/cfg/tsconfig.json @@ -10,7 +10,7 @@ "outDir": "${configDir}/dist", // Target/module - "target": "es2022", + "target": "es2023", "lib": ["esnext"], // add "dom" if needed // module `nodenext` is a modern mode that auto-detects cjs/esm // it also defaults `esModuleInterop` and `allowSyntheticDefaultImports` to true