-
Notifications
You must be signed in to change notification settings - Fork 11
/
tsconfig.paths.json
21 lines (21 loc) · 1.03 KB
/
tsconfig.paths.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@polkadot/react-api": ["src/packages/react-api/src"],
"@polkadot/react-api/*": ["src/packages/react-api/src/*"],
"@polkadot/react-components": ["src/packages/react-components/src"],
"@polkadot/react-components/*": ["src/packages/react-components/src/*"],
"@polkadot/react-hooks": ["src/packages/react-hooks/src"],
"@polkadot/react-hooks/*": ["src/packages/react-hooks/src/*"],
"@polkadot/react-params": ["src/packages/react-params/src"],
"@polkadot/react-params/*": ["src/packages/react-params/src/*"],
"@polkadot/react-query": ["src/packages/react-query/src"],
"@polkadot/react-query/*": ["src/packages/react-query/src/*"],
"@polkadot/react-signer": ["src/packages/react-signer/src"],
"@polkadot/react-signer/*": ["src/packages/react-signer/src/*"],
"@polkadot/types": ["node_modules/@subscan/multisig-polkadot-types"],
"@polkadot/types/*": ["node_modules/@subscan/multisig-polkadot-types/*"]
}
}
}