fix(frontend): TypeScriptの型チェック対象ファイルを限定して高速化するように (#14994)

* fix frontend tsconfig includes

* fix frontend-embed tsconfig includes

* fix eslint in frontend / frontend-embed

* Update Changelog

---------

Co-authored-by: Hazelnoot <acomputerdog@gmail.com>
This commit is contained in:
かっこかり 2024-11-19 10:22:47 +09:00 committed by GitHub
parent 0df6c79172
commit 81348f1277
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 5 deletions

View file

@ -39,6 +39,8 @@
- Fix: メールアドレス登録有効化時の「完了」ダイアログボックスの表示条件を修正 - Fix: メールアドレス登録有効化時の「完了」ダイアログボックスの表示条件を修正
- Fix: 画面幅が狭い環境でデザインが崩れる問題を修正 - Fix: 画面幅が狭い環境でデザインが崩れる問題を修正
(Cherry-picked from https://github.com/MisskeyIO/misskey/pull/815) (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 ### Server
- Enhance: DockerのNode.jsを22.11.0に更新 - Enhance: DockerのNode.jsを22.11.0に更新

View file

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

View file

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