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
+16 -7
View File
@@ -1,10 +1,19 @@
{
"extends": "./tsconfig.base.json",
"exclude": [
"build/**/*",
"**/build/**/*"
],
"compilerOptions": {
"baseUrl": "./packages"
}
"composite": true
},
"files": [],
"references": [
{ "path": "./packages/example-react" },
{ "path": "./packages/example-vue" },
{ "path": "./packages/exampleReactNative" },
{ "path": "./packages/react-identicon" },
{ "path": "./packages/react-qr" },
{ "path": "./packages/reactnative-identicon" },
{ "path": "./packages/ui-assets" },
{ "path": "./packages/ui-keyring" },
{ "path": "./packages/ui-settings" },
{ "path": "./packages/ui-shared" },
{ "path": "./packages/vue-identicon" }
]
}