forked from BirthdayResearch/jellyfishsdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (32 loc) · 827 Bytes
/
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
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@defichain-apps/libs/*": [
"apps/libs/*/src"
],
"@defichain/jellyfish-api-core/dist/*": [
"packages/jellyfish-api-core/src/*"
],
"@defichain/whale-api-client/dist/*": [
"packages/whale-api-client/src/*"
],
"@defichain/jellyfish-transaction/dist/*": [
"packages/jellyfish-transaction/src/*"
],
"@defichain/testcontainers/dist/*": [
"packages/testcontainers/src/*"
],
"@defichain/*": [
"packages/*/src"
]
},
"target": "es2020",
"experimentalDecorators": true,
"incremental": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true
}
}