From 866d3f674de54d99e56a47c47651728129e6dabd Mon Sep 17 00:00:00 2001 From: Meier Lukas Date: Sat, 13 Dec 2025 11:48:32 +0100 Subject: [PATCH] chore(typescript): update to target ES2024 (#4620) --- tooling/typescript/base.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tooling/typescript/base.json b/tooling/typescript/base.json index 4ff98d150..ea9ea793b 100644 --- a/tooling/typescript/base.json +++ b/tooling/typescript/base.json @@ -1,8 +1,8 @@ { "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { - "target": "ES2022", - "lib": ["dom", "dom.iterable", "ES2022"], + "target": "ES2024", + "lib": ["dom", "dom.iterable", "ES2024"], "allowJs": true, "skipLibCheck": true, "strict": true,