-
Notifications
You must be signed in to change notification settings - Fork 22
/
tsconfig.json
78 lines (78 loc) · 1.86 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"exclude": [
"build/**/*",
"**/build/**/*",
"**/redspot-template/**/*",
"examples"
],
"compilerOptions": {
"target": "ES2019",
"module": "commonjs",
"declaration": true,
"resolveJsonModule": true,
"noImplicitReturns": false,
"noUnusedLocals": false,
"noImplicitThis": false,
"noImplicitAny": false,
"esModuleInterop": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noEmitOnError": true,
"baseUrl": ".",
"paths": {
"redspot": [
"packages/redspot-core/src"
],
"redspot/*": [
"packages/redspot-core/src/*"
],
"@redspot/rpc-provider": [
"packages/rpc-provider/src"
],
"@redspot/rpc-provider/*": [
"packages/rpc-provider/src/*"
],
"@redspot/patract": [
"packages/redspot-patract/src"
],
"@redspot/patract/*": [
"packages/redspot-patract/src/*"
],
"@redspot/chai": [
"packages/redspot-chai/src"
],
"@redspot/chai/*": [
"packages/redspot-chai/src/*"
],
"@redspot/gas-reporter": [
"packages/redspot-gas-reporter/src"
],
"@redspot/gas-reporter/*": [
"packages/redspot-gas-reporter/src/*"
],
"@redspot/jupiter": [
"packages/redspot-jupiter/src"
],
"@redspot/jupiter/*": [
"packages/redspot-jupiter/src/*"
],
"@redspot/known-types": [
"packages/redspot-known-types/src"
],
"@redspot/known-types/*": [
"packages/redspot-known-types/src/*"
],
"@redspot/decimals": [
"packages/redspot-decimals/src"
],
"@redspot/decimals/*": [
"packages/redspot-decimals/src/*"
]
},
"skipLibCheck": true,
"typeRoots": [
"./node_modules/@polkadot/ts",
"./node_modules/@types"
]
}
}