-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 1.03 KB
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 1.03 KB
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
30
{
"extends": "@open-web3/dev-config/config/tsconfig.json",
"exclude": [
"build/**/*",
"**/build/**/*"
],
"compilerOptions": {
"target": "es2019",
"module": "CommonJS",
"baseUrl": ".",
"resolveJsonModule": true,
"noUnusedLocals": false,
"paths": {
"@parallel-finance/api/*": ["packages/api/src/*"],
"@parallel-finance/api": ["packages/api/src"],
"@parallel-finance/types/*": ["packages/types/src/*"],
"@parallel-finance/types": ["packages/types/src"],
"@parallel-finance/type-definitions/*": ["packages/type-definitions/src/*"],
"@parallel-finance/type-definitions": ["packages/type-definitions/src"],
"@polkadot/api/augment": ["packages/types/src/interfaces/augment-api.ts"],
"@polkadot/types/augment": ["packages/types/src/interfaces/augment-types.ts"],
"@polkadot/types/lookup": ["packages/types/src/interfaces/types-lookup.ts"]
},
"skipLibCheck": true,
"typeRoots": [
"./node_modules/@polkadot/ts",
"./node_modules/@types"
]
}
}