From 862968bb92be527abfc9246970bfe23cb16bfd99 Mon Sep 17 00:00:00 2001 From: Oliver Eyton-Williams Date: Tue, 25 Mar 2025 19:28:26 +0100 Subject: [PATCH] chore(client): update tsconfig lib and target (#59425) --- client/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/tsconfig.json b/client/tsconfig.json index 4abd7e76066..c399cd236b3 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { - "lib": ["WebWorker", "DOM", "DOM.Iterable", "ES2020"], - "target": "es2020", + "lib": ["WebWorker", "DOM", "DOM.Iterable", "es2023"], + "target": "ES2023", "module": "es2020", "moduleResolution": "node", "allowJs": true,