forked from shapeshift/hdwallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
59 lines (57 loc) · 2.18 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
{
"compilerOptions": {
// tsc is insanely drunk with internal resolutions currently, this at least silences it so we can ship things
// the installed versions are still the same as before, but the bumped tsc version might have made it stricter
"skipLibCheck": true,
"target": "ES2016",
"module": "commonjs",
"lib": ["es2020", "dom", "es5"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"composite": true,
"isolatedModules": true,
/* Strict Type-Checking Options */
"strict": true,
/* Module Resolution Options */
"moduleResolution": "node",
"resolveJsonModule": true,
"baseUrl": "./packages",
"paths": {
"@shapeshiftoss/*": ["$1/src/*"]
},
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
/* Experimental Options */
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"files": [],
"exclude": ["node_modules", "dist", "integration", "examples"],
"references": [
{ "path": "./integration" },
{ "path": "./packages/hdwallet-core" },
{ "path": "./packages/hdwallet-keepkey" },
{ "path": "./packages/hdwallet-keepkey-chromeusb" },
{ "path": "./packages/hdwallet-keepkey-electron" },
{ "path": "./packages/hdwallet-keepkey-nodehid" },
{ "path": "./packages/hdwallet-keepkey-nodewebusb" },
{ "path": "./packages/hdwallet-keepkey-tcp" },
{ "path": "./packages/hdwallet-keepkey-webusb" },
{ "path": "./packages/hdwallet-ledger" },
{ "path": "./packages/hdwallet-ledger-webhid" },
{ "path": "./packages/hdwallet-ledger-webusb" },
{ "path": "./packages/hdwallet-metamask" },
{ "path": "./packages/hdwallet-metamask-shapeshift-multichain" },
{ "path": "./packages/hdwallet-coinbase" },
{ "path": "./packages/hdwallet-native" },
{ "path": "./packages/hdwallet-portis" },
{ "path": "./packages/hdwallet-tallyho" },
{ "path": "./packages/hdwallet-trezor" },
{ "path": "./packages/hdwallet-trezor-connect" },
{ "path": "./packages/hdwallet-walletconnect" },
{ "path": "./packages/hdwallet-walletconnectV2" },
{ "path": "./packages/hdwallet-xdefi" },
{ "path": "./packages/hdwallet-keplr" }
]
}