-
Notifications
You must be signed in to change notification settings - Fork 116
/
tsconfig.base.json
80 lines (80 loc) · 2.19 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
76
77
78
79
80
{
"compilerOptions": {
"moduleResolution": "node",
"target": "es6",
"module": "es2020",
"lib": [
"es2020",
"dom"
],
"strict": true,
"sourceMap": true,
"esModuleInterop": true,
"useUnknownInCatchVariables": false,
"noImplicitAny": true,
"declaration": true,
"allowSyntheticDefaultImports": true,
"noUnusedParameters": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"jsx": "react",
"baseUrl": "packages",
"downlevelIteration": true,
"paths": {
"@taquito/core": [
"taquito-core/src/taquito-core.ts"
],
"@taquito/beacon-wallet": [
"taquito-beacon-wallet/src/taquito-beacon-wallet.ts"
],
"@taquito/contracts-library": [
"taquito-contracts-library/src/taquito-contracts-library.ts"
],
"@taquito/http-utils": [
"taquito-http-utils/src/taquito-http-utils.ts"
],
"@taquito/ledger-signer": [
"taquito-ledger-signer/src/taquito-ledger-signer.ts"
],
"@taquito/local-forging": [
"taquito-local-forging/src/taquito-local-forging.ts"
],
"@taquito/michel-codec": [
"taquito-michelson-encoder/src/taquito-michel-codec.ts"
],
"@taquito/michelson-encoder": [
"taquito-michelson-encoder/src/taquito-michelson-encoder.ts"
],
"@taquito/remote-signer": [
"taquito-remote-signer/src/taquito-remote-signer.ts"
],
"@taquito/rpc": [
"taquito-rpc/src/taquito-rpc.ts"
],
"@taquito/sapling": [
"taquito-sapling/taquito-sapling.ts"
],
"@taquito/signer": [
"taquito-signer/src/taquito-signer.ts"
],
"@taquito/taquito": [
"taquito/src/taquito.ts"
],
"@taquito/timelock": [
"taquito-timelock/src/taquito-timelock.ts"
],
"@taquito/tzip12": [
"taquito-tzip12/src/taquito-tzip12.ts"
],
"@taquito/tzip16": [
"taquito-tzip16/src/taquito-tzip16.ts"
],
"@taquito/utils": [
"taquito-utils/src/taquito-utils.ts"
],
"@taquito/wallet-connect": [
"taquito-wallet-connect/src/taquito-wallet-connect.ts"
]
}
}
}