From 3a7bb4597f31093109a5c4c3bfc15a3eaf074f75 Mon Sep 17 00:00:00 2001 From: kirillgroshkov Date: Tue, 29 Oct 2024 23:33:25 +0100 Subject: [PATCH] feat: target=es2023 --- cfg/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfg/tsconfig.json b/cfg/tsconfig.json index 5231f15..7dbfae9 100644 --- a/cfg/tsconfig.json +++ b/cfg/tsconfig.json @@ -6,7 +6,7 @@ { "compilerOptions": { // 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