2024.11.0-yumechinokuni.5 #30

Merged
yume merged 23 commits from develop into master 2024-11-19 02:02:44 -06:00
3 changed files with 11 additions and 5 deletions
Showing only changes of commit 81348f1277 - Show all commits

View file

@ -39,6 +39,8 @@
- Fix: メールアドレス登録有効化時の「完了」ダイアログボックスの表示条件を修正
- Fix: 画面幅が狭い環境でデザインが崩れる問題を修正
(Cherry-picked from https://github.com/MisskeyIO/misskey/pull/815)
- Fix: TypeScriptの型チェック対象ファイルを限定してビルドを高速化するように
(Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/725)
### Server
- Enhance: DockerのNode.jsを22.11.0に更新

View file

@ -33,7 +33,7 @@
"./node_modules"
],
"types": [
"vite/client",
"vite/client"
],
"lib": [
"esnext",
@ -44,8 +44,9 @@
},
"compileOnSave": false,
"include": [
"./**/*.ts",
"./**/*.vue"
"./src/**/*.ts",
"./src/**/*.vue",
"./@types/**/*.ts"
],
"exclude": [
".storybook/**/*"

View file

@ -45,8 +45,11 @@
},
"compileOnSave": false,
"include": [
"./**/*.ts",
"./**/*.vue"
"./src/**/*.ts",
"./src/**/*.vue",
"./test/**/*.ts",
"./test/**/*.vue",
"./@types/**/*.ts"
],
"exclude": [
".storybook/**/*"