-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
52 lines (47 loc) · 1.76 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"extends": "./node_modules/@polkadot/dev/config/tsconfig",
"compilerOptions":
{
"target": "es2017",
"module": "commonjs",
"moduleResolution": "node",
"jsx": "react",
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"declaration": true,
"sourceMap": true,
"importHelpers": true,
/* Module Resolution Options */
"esModuleInterop": true,
"baseUrl": ".",
"paths":
{
"@polkadot/api": ["packages/api/src"],
"@polkadot/api/*": ["packages/api/src/*"],
"@polkadot/api-derive": ["packages/api-derive/src"],
"@polkadot/api-derive/*": ["packages/api-derive/src/*"],
"@polkadot/rpc-core": ["packages/rpc-core/src"],
"@polkadot/rpc-core/*": ["packages/rpc-core/src/*"],
"@polkadot/rpc-provider": ["packages/rpc-provider/src"],
"@polkadot/rpc-provider/*": ["packages/rpc-provider/src/*"],
"@polkadot/rpc-rx": ["packages/rpc-rx/src"],
"@polkadot/rpc-rx/*": ["packages/rpc-rx/src/*"],
"@polkadot/extrinsics": ["packages/type-extrinsics/src"],
"@polkadot/extrinsics/*": ["packages/type-extrinsics/src/*"],
"@polkadot/jsonrpc": ["packages/type-jsonrpc/src"],
"@polkadot/jsonrpc/*": ["packages/type-jsonrpc/src/*"],
"@polkadot/storage": ["packages/type-storage/src"],
"@polkadot/storage/*": ["packages/type-storage/src/*"],
"@polkadot/types": ["packages/types/src"],
"@polkadot/types/*": ["packages/types/src/*"]
},
"typeRoots": [
"./node_modules/@polkadot/ts",
"./node_modules/@types"
],
/* Strict Type-Checking Options */
"strict": true,
"skipLibCheck": true
}
}