forked from polkadot-js/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
75 lines (75 loc) · 4.59 KB
/
tsconfig.base.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"extends": "@polkadot/dev/config/tsconfig.json",
"compilerOptions": {
"composite": true,
"paths": {
"@polkadot/api": ["api/src/index.ts"],
"@polkadot/api/base": ["api/src/base/index.ts"],
"@polkadot/api/packageInfo": ["api/src/packageInfo.ts"],
"@polkadot/api/promise/decorateMethod": ["api/src/promise/decorateMethod.ts"],
"@polkadot/api/submittable/*": ["api/src/submittable/*.ts"],
"@polkadot/api/types": ["api/src/types/index.ts"],
"@polkadot/api/types/*": ["api/src/types/*.ts"],
"@polkadot/api-augment": ["api-augment/src/index.ts"],
"@polkadot/api-augment/packageInfo": ["api-augment/src/packageInfo.ts"],
"@polkadot/api-base": ["api-base/src/index.ts"],
"@polkadot/api-base/packageInfo": ["api-base/src/packageInfo.ts"],
"@polkadot/api-base/types": ["api-base/src/types/index.ts"],
"@polkadot/api-base/types/*": ["api-base/src/types/*.ts"],
"@polkadot/api-contract": ["api-contract/src/index.ts"],
"@polkadot/api-contract/packageInfo": ["api-contract/src/packageInfo.ts"],
"@polkadot/api-derive": ["api-derive/src/index.ts"],
"@polkadot/api-derive/packageInfo": ["api-derive/src/packageInfo.ts"],
"@polkadot/api-derive/types": ["api-derive/src/types.ts"],
"@polkadot/rpc-augment": ["rpc-augment/src/index.ts"],
"@polkadot/rpc-augment/packageInfo": ["rpc-augment/src/packageInfo.ts"],
"@polkadot/rpc-core": ["rpc-core/src/index.ts"],
"@polkadot/rpc-core/packageInfo": ["rpc-core/src/packageInfo.ts"],
"@polkadot/rpc-core/types": ["rpc-core/src/types/index.ts"],
"@polkadot/rpc-core/types/*": ["rpc-core/src/types/*.ts"],
"@polkadot/rpc-provider": ["rpc-provider/src/index.ts"],
"@polkadot/rpc-provider/mock": ["rpc-provider/src/mock/index.ts"],
"@polkadot/rpc-provider/packageInfo": ["rpc-provider/src/packageInfo.ts"],
"@polkadot/rpc-provider/types": ["rpc-provider/src/types.ts"],
"@polkadot/typegen/*": ["typegen/src/*.ts"],
"@polkadot/types": ["types/src/index.ts"],
"@polkadot/types/codec": ["types/src/codec/index.ts"],
"@polkadot/types/create": ["types/src/create/index.ts"],
"@polkadot/types/extrinsic": ["types/src/extrinsic/index.ts"],
"@polkadot/types/extrinsic/*": ["types/src/extrinsic/*.ts"],
"@polkadot/types/generic": ["types/src/generic/index.ts"],
"@polkadot/types/interfaces": ["types/src/interfaces/index.ts"],
"@polkadot/types/interfaces/definitions": ["types/src/interfaces/definitions.ts"],
"@polkadot/types/interfaces/democracy/*": ["types/src/interfaces/democracy/*.ts"],
"@polkadot/types/interfaces/jsonrpc": ["types/src/interfaces/jsonrpc.ts"],
"@polkadot/types/interfaces/*": ["types/src/interfaces/*/index.ts"],
"@polkadot/types/lookup": ["types/src/lookup.ts"],
"@polkadot/types/metadata": ["types/src/metadata/index.ts"],
"@polkadot/types/metadata/*": ["types/src/metadata/*.ts"],
"@polkadot/types/packageInfo": ["types/src/packageInfo.ts"],
"@polkadot/types/primitive": ["types/src/primitive/index.ts"],
"@polkadot/types/primitive/*": ["types/src/primitive/*.ts"],
"@polkadot/types/types": ["types/src/types/index.ts"],
"@polkadot/types/types/*": ["types/src/types/*.ts"],
"@polkadot/types/util": ["types/src/util/index.ts"],
"@polkadot/types-augment": ["types-augment/src/index.ts"],
"@polkadot/types-augment/lookup/*": ["types-augment/src/lookup/*.ts"],
"@polkadot/types-augment/packageInfo": ["types-augment/src/packageInfo.ts"],
"@polkadot/types-codec": ["types-codec/src/index.ts"],
"@polkadot/types-codec/packageInfo": ["types-codec/src/packageInfo.ts"],
"@polkadot/types-codec/types": ["types-codec/src/types/index.ts"],
"@polkadot/types-codec/types/*": ["types-codec/src/types/*.ts"],
"@polkadot/types-create": ["types-create/src/index.ts"],
"@polkadot/types-create/exports": ["types-create/src/exports.ts"],
"@polkadot/types-create/packageInfo": ["types-create/src/packageInfo.ts"],
"@polkadot/types-create/types": ["types-create/src/types/index.ts"],
"@polkadot/types-create/types/*": ["types-create/src/types/*.ts"],
"@polkadot/types-known": ["types-known/src/index.ts"],
"@polkadot/types-known/packageInfo": ["types-known/src/packageInfo.ts"],
"@polkadot/types-support": ["types-support/src/index.ts"],
"@polkadot/types-support/json/*": ["types-support/src/json/*"],
"@polkadot/types-support/metadata/*": ["types-support/src/metadata/*.ts"],
"@polkadot/types-support/packageInfo": ["types-support/src/packageInfo.ts"]
}
}
}