From 173fb7326c0575037fc7d85a1d6b770253155d1d Mon Sep 17 00:00:00 2001 From: Thomas Deinhamer <184284+thasmo@users.noreply.github.com> Date: Sat, 30 Nov 2024 18:38:04 +0100 Subject: [PATCH] feat: set target to esnext in configuration (#117) --- configuration/basic.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/basic.json b/configuration/basic.json index 470c0e1..0183039 100755 --- a/configuration/basic.json +++ b/configuration/basic.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "es2022", + "target": "esnext", "lib": ["dom", "dom.iterable", "esnext", "webworker"], "jsx": "react-jsx", "allowJs": true,