summaryrefslogtreecommitdiff
path: root/packages/frontend-embed/tsconfig.json
diff options
context:
space:
mode:
authorおさむのひと <46447427+samunohito@users.noreply.github.com>2025-01-07 21:23:05 +0900
committerGitHub <noreply@github.com>2025-01-07 12:23:05 +0000
commitf7da2bad6f0b25652ded11e6a9f86efc40872200 (patch)
tree1f279f312d9fe20e7cf2dff7c459ba1085dceb07 /packages/frontend-embed/tsconfig.json
parentfix(frontend-shared): nodemonをdevDependenciesに追加 (#15225) (diff)
downloadmisskey-f7da2bad6f0b25652ded11e6a9f86efc40872200.tar.gz
misskey-f7da2bad6f0b25652ded11e6a9f86efc40872200.tar.bz2
misskey-f7da2bad6f0b25652ded11e6a9f86efc40872200.zip
fix(frontend): frontend / frontend-embedにあるtsconfig.jsonのmoduleをES2022にする (#15215)
* fix(frontend): frontend / frontend-embedにあるtsconfig.jsonのmoduleをES2022にする * fixed errors * fixed errors * fixed errors
Diffstat (limited to 'packages/frontend-embed/tsconfig.json')
-rw-r--r--packages/frontend-embed/tsconfig.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend-embed/tsconfig.json b/packages/frontend-embed/tsconfig.json
index 45f933dc28..60164a7e3d 100644
--- a/packages/frontend-embed/tsconfig.json
+++ b/packages/frontend-embed/tsconfig.json
@@ -10,8 +10,8 @@
"declaration": false,
"sourceMap": false,
"target": "ES2022",
- "module": "nodenext",
- "moduleResolution": "nodenext",
+ "module": "ES2022",
+ "moduleResolution": "Bundler",
"removeComments": false,
"noLib": false,
"strict": true,