-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
29 lines (29 loc) · 942 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
23
24
25
26
27
28
29
{
"extends": "./node_modules/@polkadot/dev/config/tsconfig",
"exclude": [
"build/**/*",
"**/build/**/*",
"**/*e2e.ts"
],
"compilerOptions": {
"baseUrl": ".",
"paths":
{
"@encointer/util": ["packages/util/src"],
"@encointer/util/*": ["packages/util/src/*"],
"@encointer/types": ["packages/types/src"],
"@encointer/types/*": ["packages/types/src/*"],
"@encointer/node-api": ["packages/node-api/src"],
"@encointer/node-api/*": ["packages/node-api/src/*"],
"@encointer/worker-api": ["packages/worker-api/src"],
"@encointer/worker-api/*": ["packages/worker-api/src/*"],
"@polkadot/api/augment": ["packages/types/src/interfaces/augment-api.ts"],
"@polkadot/types/augment": ["packages/types/src/interfaces/augment-types.ts"]
},
"skipLibCheck": true,
"typeRoots": [
"./node_modules/@polkadot/ts",
"./node_modules/@types"
],
}
}