From ae433634db562e644175d39537ef6b811a381f3f Mon Sep 17 00:00:00 2001 From: ethernet Date: Mon, 15 Jun 2026 11:57:03 -0400 Subject: [PATCH] fix(desktop): move tsconfig to es2023 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: ibrahim özsaraç <160004724+iborazzi@users.noreply.github.com> --- apps/bootstrap-installer/tsconfig.json | 4 ++-- apps/shared/tsconfig.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/bootstrap-installer/tsconfig.json b/apps/bootstrap-installer/tsconfig.json index 9227970f066..b5638bda53c 100644 --- a/apps/bootstrap-installer/tsconfig.json +++ b/apps/bootstrap-installer/tsconfig.json @@ -1,8 +1,8 @@ { "compilerOptions": { - "target": "ES2022", + "target": "ES2023", "useDefineForClassFields": true, - "lib": ["ES2022", "DOM", "DOM.Iterable"], + "lib": ["ES2023", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, "moduleResolution": "bundler", diff --git a/apps/shared/tsconfig.json b/apps/shared/tsconfig.json index 4e530c70d99..c602eeebca2 100644 --- a/apps/shared/tsconfig.json +++ b/apps/shared/tsconfig.json @@ -1,8 +1,8 @@ { "compilerOptions": { - "target": "ES2022", + "target": "ES2023", "useDefineForClassFields": true, - "lib": ["DOM", "DOM.Iterable", "ES2022"], + "lib": ["DOM", "DOM.Iterable", "ES2023"], "skipLibCheck": true, "strict": true, "forceConsistentCasingInFileNames": true,