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
+15
View File
@@ -0,0 +1,15 @@
{
"extends": "@polkadot/dev/config/tsconfig.json",
"compilerOptions": {
"composite": true,
"paths": {
"@polkadot/phishing": ["phishing/src"],
"@polkadot/phishing/*": ["phishing/src/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"typeRoots": [
"./node_modules/@types"
]
}
}