Add tsconfig.base (#800)

* Add tsconfig.base

* Remove unused package

* yarn

* Adjust paths
This commit is contained in:
Jaco
2021-12-13 07:32:14 +01:00
committed by GitHub
parent 22b3249582
commit 8f00bdb100
11 changed files with 30 additions and 55 deletions
+2 -12
View File
@@ -1,20 +1,10 @@
{
"extends": "@polkadot/dev/config/tsconfig.json",
"extends": "./tsconfig.base.json",
"exclude": [
"build/**/*",
"**/build/**/*"
],
"compilerOptions": {
"baseUrl": ".",
"paths":
{
"@polkadot/phishing": ["packages/phishing/src"],
"@polkadot/phishing/*": ["packages/phishing/src/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"typeRoots": [
"./node_modules/@types"
]
"baseUrl": "./packages"
}
}