-
-
Notifications
You must be signed in to change notification settings - Fork 273
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 826 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"extends": "../../tsconfig.packages.json",
"compilerOptions": {
"baseUrl": "./"
},
"references": [
{ "path": "../../packages/base-controller" },
{ "path": "../../packages/base-data-service" },
{ "path": "../../packages/controller-utils" },
{ "path": "../../packages/messenger" },
{ "path": "../../packages/network-controller" }
],
"include": ["../../types", "./src"],
/**
* Here we ensure that TypeScript resolves `@metamask/*` imports to the
* uncompiled source code for packages that live in this repo.
*
* NOTE: This must be synchronized with the `moduleNameMapper` option in
* `jest.config.packages.js`.
*
* NOTE 2: This is not necessary when copying this package to `packages/`.
*/
"paths": {
"@metamask/*": ["../../packages/*/src", "../*/src"]
}
}