forked from ecadlabs/taquito
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
48 lines (48 loc) · 1.15 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
{
"compilerOptions": {
"moduleResolution": "node",
"target": "es5",
"module": "es2015",
"lib": [
"es2015",
"es2016",
"es2017",
"dom"
],
"strict": true,
"sourceMap": true,
"esModuleInterop": true,
"noImplicitAny": true,
"declaration": true,
"allowSyntheticDefaultImports": true,
"noUnusedParameters": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"jsx": "react",
"baseUrl": "packages",
"downlevelIteration": true,
"paths": {
"@taquito/rpc": [
"taquito-rpc/src/taquito-rpc.ts"
],
"@taquito/michelson-encoder": [
"taquito-michelson-encoder/src/taquito-michelson-encoder.ts"
],
"@taquito/utils": [
"taquito-utils/src/taquito-utils.ts"
],
"@taquito/taquito": [
"taquito/src/taquito.ts"
],
"@taquito/http-utils": [
"taquito-http-utils/src/taquito-http-utils.ts"
],
"@taquito/signer": [
"taquito-signer/src/taquito-signer.ts"
],
"@taquito/local-forging": [
"taquito-local-forging/src/taquito-local-forging.ts"
]
}
}
}