diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-11-09 19:49:27 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-11-09 19:49:27 +0900 |
| commit | 1ffc53f596125a98a3dd49155efe7ee0d0c06442 (patch) | |
| tree | f8034e1357c191e928a413fd1c086f6983f68f5b | |
| parent | fix type (diff) | |
| download | misskey-1ffc53f596125a98a3dd49155efe7ee0d0c06442.tar.gz misskey-1ffc53f596125a98a3dd49155efe7ee0d0c06442.tar.bz2 misskey-1ffc53f596125a98a3dd49155efe7ee0d0c06442.zip | |
use esnext to avoid type error
| -rw-r--r-- | packages/frontend/tsconfig.json | 2 |
1 files changed, 1 insertions, 1 deletions
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, |