Use tsconfig references (#561)

* Use tsconfig references

* Adjust

* tesconfig.eslint.json

* Bumps
This commit is contained in:
Jaco
2021-12-14 07:28:51 +01:00
committed by GitHub
parent 1cc9fb245f
commit cab6086826
28 changed files with 848 additions and 704 deletions
+3 -3
View File
@@ -20,14 +20,14 @@
"version": "0.87.6-1",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.16.3",
"@babel/runtime": "^7.16.5",
"@polkadot/ui-shared": "0.87.6-1",
"@polkadot/util": "^8.1.2",
"@polkadot/util-crypto": "^8.1.2",
"react-native-svg": "^12.2.0"
"react-native-svg": "^12.1.1"
},
"devDependencies": {
"@types/react-native": "^0.66.8"
"@types/react-native": "^0.66.9"
},
"peerDependencies": {
"@polkadot/util": "*",
@@ -0,0 +1,11 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": "..",
"outDir": "./build",
"rootDir": "./src"
},
"references": [
{ "path": "../ui-shared" }
]
}