-
-
Notifications
You must be signed in to change notification settings - Fork 293
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
Changes from all commits
59d1379
0aadda4
f581e73
567a301
16d5dc1
ecd9a6e
c2ef4bb
13fb9ef
2886d3b
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,8 +10,15 @@ | |
| { | ||
| "path": "../keyring-controller" | ||
| }, | ||
| { "path": "../network-controller" }, | ||
| { "path": "../messenger" } | ||
| { | ||
| "path": "../network-controller" | ||
| }, | ||
| { | ||
| "path": "../messenger" | ||
| }, | ||
| { | ||
| "path": "../controller-utils" | ||
|
Collaborator
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"] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,17 +6,54 @@ | |
| "rootDir": "./src" | ||
| }, | ||
| "references": [ | ||
| { "path": "../account-tree-controller/tsconfig.build.json" }, | ||
| { "path": "../assets-controllers/tsconfig.build.json" }, | ||
| { "path": "../base-controller/tsconfig.build.json" }, | ||
| { "path": "../client-controller/tsconfig.build.json" }, | ||
| { "path": "../core-backend/tsconfig.build.json" }, | ||
| { "path": "../keyring-controller/tsconfig.build.json" }, | ||
| { "path": "../messenger/tsconfig.build.json" }, | ||
| { "path": "../network-enablement-controller/tsconfig.build.json" }, | ||
| { "path": "../permission-controller/tsconfig.build.json" }, | ||
| { "path": "../phishing-controller/tsconfig.build.json" }, | ||
| { "path": "../preferences-controller/tsconfig.build.json" } | ||
| { | ||
| "path": "../account-tree-controller/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../assets-controllers/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../base-controller/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../client-controller/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../core-backend/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../keyring-controller/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../messenger/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../network-enablement-controller/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../permission-controller/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../phishing-controller/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../preferences-controller/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../accounts-controller/tsconfig.build.json" | ||
|
Collaborator
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. All references starting with |
||
| }, | ||
| { | ||
| "path": "../controller-utils/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../network-controller/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../polling-controller/tsconfig.build.json" | ||
| }, | ||
| { | ||
| "path": "../transaction-controller/tsconfig.build.json" | ||
| } | ||
| ], | ||
| "include": ["../../types", "./src"], | ||
| "exclude": ["**/*.test.ts", "**/__fixtures__/"] | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,16 +4,54 @@ | |
| "baseUrl": "./" | ||
| }, | ||
| "references": [ | ||
| { "path": "../account-tree-controller" }, | ||
| { "path": "../assets-controllers" }, | ||
| { "path": "../base-controller" }, | ||
| { "path": "../client-controller" }, | ||
| { "path": "../core-backend" }, | ||
| { "path": "../keyring-controller" }, | ||
| { "path": "../messenger" }, | ||
| { "path": "../network-enablement-controller" }, | ||
| { "path": "../phishing-controller" }, | ||
| { "path": "../preferences-controller" } | ||
| { | ||
| "path": "../account-tree-controller" | ||
| }, | ||
| { | ||
| "path": "../assets-controllers" | ||
| }, | ||
| { | ||
| "path": "../base-controller" | ||
| }, | ||
| { | ||
| "path": "../client-controller" | ||
| }, | ||
| { | ||
| "path": "../core-backend" | ||
| }, | ||
| { | ||
| "path": "../keyring-controller" | ||
| }, | ||
| { | ||
| "path": "../messenger" | ||
| }, | ||
| { | ||
| "path": "../network-enablement-controller" | ||
| }, | ||
| { | ||
| "path": "../phishing-controller" | ||
| }, | ||
| { | ||
| "path": "../preferences-controller" | ||
| }, | ||
| { | ||
| "path": "../accounts-controller" | ||
|
Collaborator
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. All references starting with |
||
| }, | ||
| { | ||
| "path": "../controller-utils" | ||
| }, | ||
| { | ||
| "path": "../network-controller" | ||
| }, | ||
| { | ||
| "path": "../permission-controller" | ||
| }, | ||
| { | ||
| "path": "../polling-controller" | ||
| }, | ||
| { | ||
| "path": "../transaction-controller" | ||
| } | ||
| ], | ||
| "include": ["../../types", "./src"] | ||
| } | ||
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.
This dependency is present in
devDependenciesbut was missing as a reference.