From 1ffc53f596125a98a3dd49155efe7ee0d0c06442 Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Sun, 9 Nov 2025 19:49:27 +0900 Subject: [PATCH] use esnext to avoid type error --- packages/frontend/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/tsconfig.json b/packages/frontend/tsconfig.json index 135bcc04cb..125a393417 100644 --- a/packages/frontend/tsconfig.json +++ b/packages/frontend/tsconfig.json @@ -10,7 +10,7 @@ "declaration": false, "sourceMap": false, "target": "ES2022", - "module": "ES2022", + "module": "esnext", "moduleResolution": "Bundler", "removeComments": false, "noLib": false,