From c833a471cb096fb0c97b4f1a8138b448e376ca45 Mon Sep 17 00:00:00 2001 From: Roman Date: Fri, 27 Feb 2026 12:27:47 +0000 Subject: [PATCH] update target to es2022 --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 01e09f861..d7d867d87 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,14 +3,14 @@ "esModuleInterop": true, "exactOptionalPropertyTypes": true, "forceConsistentCasingInFileNames": true, - "lib": ["ES2020", "dom"], + "lib": ["ES2022", "dom"], "module": "nodenext", "moduleResolution": "nodenext", "noEmit": true, "noErrorTruncation": true, "noUncheckedIndexedAccess": true, "strict": true, - "target": "es2020" + "target": "es2022" }, "exclude": ["./dist/**/*"] }