mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-22 03:17:58 +00:00
b3e9b70341
* add readme * react-native example app * update readme * add ios-cli dep * revert package.json change * update readme * update readme * don't auto launch metro * add react native scripts * nohoist @react-native-community/** * update readme * undo wrong README change * remove react-native root dep * copyright headers * semi-style * add default gitignore * finish linting * remove test for now * fix typescript errors * fix linting * update scripts * update deps and version * update readme * remove accidental dep * update readme * bump deps * update yarn.lock * actually update yarn.lock * fix yarn.lock conflicts by updating exampleReactNative deps
33 lines
1.3 KiB
JSON
33 lines
1.3 KiB
JSON
{
|
|
"extends": "./node_modules/@polkadot/dev/config/tsconfig",
|
|
"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/*" ]
|
|
},
|
|
"typeRoots": [
|
|
"./node_modules/@polkadot/ts",
|
|
"./node_modules/@types"
|
|
],
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": [
|
|
"packages/exampleReactNative"
|
|
]
|
|
}
|