Files
phishing/tsconfig.json
T
2021-02-12 22:03:06 +01:00

21 lines
411 B
JSON

{
"extends": "@polkadot/dev/config/tsconfig.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"
]
}
}