forked from open-web3-stack/guardian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
22 lines (22 loc) · 830 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"extends": "@open-web3/dev-config/config/tsconfig.json",
"exclude": ["build/**/*", "**/build/**/*", "**/__tests__/**/*"],
"compilerOptions": {
"target": "es2019",
"module": "CommonJS",
"baseUrl": ".",
"noImplicitAny": false,
"noUnusedLocals": false,
"esModuleInterop": true,
"paths": {
"@open-web3/guardian": ["packages/guardian/src"],
"@open-web3/guardian/*": ["packages/guardian/src/*"],
"@open-web3/guardian-cli": ["packages/guardian-cli/src"],
"@open-web3/guardian-cli/*": ["packages/guardian-cli/src/*"],
"@open-web3/example-guardian": ["packages/example-guardian/src"],
"@open-web3/example-guardian/*": ["packages/example-guardian/src/*"]
},
"skipLibCheck": true,
"typeRoots": ["./node_modules/@polkadot/ts", "./node_modules/@types"]
}
}