Commit 81348f1 1 parent 0df6c79 commit 81348f1 Copy full SHA for 81348f1
File tree 3 files changed +11
-5
lines changed
3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 39
39
- Fix: メールアドレス登録有効化時の「完了」ダイアログボックスの表示条件を修正
40
40
- Fix: 画面幅が狭い環境でデザインが崩れる問題を修正
41
41
(Cherry-picked from https://github.com/MisskeyIO/misskey/pull/815)
42
+ - Fix: TypeScriptの型チェック対象ファイルを限定してビルドを高速化するように
43
+ (Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/725)
42
44
43
45
### Server
44
46
- Enhance: DockerのNode.jsを22.11.0に更新
Original file line number Diff line number Diff line change 33
33
"./node_modules"
34
34
] ,
35
35
"types" : [
36
- "vite/client" ,
36
+ "vite/client"
37
37
] ,
38
38
"lib" : [
39
39
"esnext" ,
44
44
} ,
45
45
"compileOnSave" : false ,
46
46
"include" : [
47
- "./**/*.ts" ,
48
- "./**/*.vue"
47
+ "./src/**/*.ts" ,
48
+ "./src/**/*.vue" ,
49
+ "./@types/**/*.ts"
49
50
] ,
50
51
"exclude" : [
51
52
".storybook/**/*"
Original file line number Diff line number Diff line change 45
45
} ,
46
46
"compileOnSave" : false ,
47
47
"include" : [
48
- "./**/*.ts" ,
49
- "./**/*.vue"
48
+ "./src/**/*.ts" ,
49
+ "./src/**/*.vue" ,
50
+ "./test/**/*.ts" ,
51
+ "./test/**/*.vue" ,
52
+ "./@types/**/*.ts"
50
53
] ,
51
54
"exclude" : [
52
55
".storybook/**/*"
You can’t perform that action at this time.
0 commit comments