Files
phishing/tsconfig.base.json
T
Jaco 8f00bdb100 Add tsconfig.base (#800)
* Add tsconfig.base

* Remove unused package

* yarn

* Adjust paths
2021-12-13 08:32:14 +02:00

16 lines
329 B
JSON

{
"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"
]
}
}