-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
34 lines (34 loc) · 1.47 KB
/
tsconfig.json
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
27
28
29
30
31
32
33
34
{
"extends": "@polkadot/dev/config/tsconfig.json",
"exclude": ["build/**/*", "**/build/**/*", "packages/example-angular"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@polkadot/react-identicon": ["packages/react-identicon/src"],
"@polkadot/react-identicon/*": ["packages/react-identicon/src/*"],
"@polkadot/react-qr": ["packages/react-qr/src"],
"@polkadot/react-qr/*": ["packages/react-qr/src/*"],
"@polkadot/reactnative-identicon": ["packages/reactnative-identicon/src"],
"@polkadot/reactnative-identicon/*": ["packages/reactnative-identicon/src/*"],
"@polkadot/ui-assets": ["packages/ui-assets/src"],
"@polkadot/ui-assets/*": ["packages/ui-assets/src/*"],
"@polkadot/ui-keyring": ["packages/ui-keyring/src"],
"@polkadot/ui-keyring/*": ["packages/ui-keyring/src/*"],
"@polkadot/ui-settings": ["packages/ui-settings/src"],
"@polkadot/ui-settings/*": ["packages/ui-settings/src/*"],
"@polkadot/ui-shared": ["packages/ui-shared/src"],
"@polkadot/ui-shared/*": ["packages/ui-shared/src/*"],
"@polkadot/vue-identicon": ["packages/vue-identicon/src"],
"@polkadot/vue-identicon/*": ["packages/vue-identicon/src/*"],
"crypto": [
"node_modules/crypto-browserify"
],
"stream": [
"node_modules/stream-browserify"
]
},
"noUnusedLocals": false,
"skipLibCheck": true,
"typeRoots": ["./node_modules/@polkadot/ts", "./node_modules/@types"]
}
}