-
-
Notifications
You must be signed in to change notification settings - Fork 272
Ensure refs in tsconfig files are synced with internal deps #8384
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
6cb4611
5a85c1c
a0fe302
783f7e5
4e56c94
fa6349c
563913f
464d1bc
7d12bc9
56f2779
03f4104
6236cfc
5b487e7
f6f4a91
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,9 +10,18 @@ | |
| { | ||
| "path": "../base-controller/tsconfig.build.json" | ||
| }, | ||
| { "path": "../keyring-controller/tsconfig.build.json" }, | ||
| { "path": "../network-controller/tsconfig.build.json" }, | ||
| { "path": "../messenger/tsconfig.build.json" } | ||
| { | ||
| "path": "../keyring-controller/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../network-controller/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../messenger/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../controller-utils/tsconfig.build.json" | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This dependency is present in |
||
| } | ||
| ], | ||
| "include": ["../../types", "./src"] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,8 +10,15 @@ | |
| { | ||
| "path": "../keyring-controller" | ||
| }, | ||
| { "path": "../network-controller" }, | ||
| { "path": "../messenger" } | ||
| { | ||
| "path": "../network-controller" | ||
| }, | ||
| { | ||
| "path": "../messenger" | ||
| }, | ||
| { | ||
| "path": "../controller-utils" | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This dependency is present in |
||
| } | ||
| ], | ||
| "include": ["../../types", "./src", "./tests"] | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We've added a new subdirectory to
scriptsso rather than adding an extra entry here we can consolidate them all into one glob.