forked from shapeshift/hdwallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
62 lines (58 loc) · 2.44 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
{
"compilerOptions": {
"target": "ES2016",
"module": "commonjs",
"lib": ["es2016", "dom", "es5"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"composite": true,
"isolatedModules": true,
/* Strict Type-Checking Options */
"strict": true,
// "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
// "strictNullChecks": true, /* Enable strict null checks. */
// "strictFunctionTypes": true, /* Enable strict checking of function types. */
// "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
// "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
// "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
// "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
/* Additional Checks */
// "noUnusedLocals": true,
// "noUnusedParameters": true,
// "noImplicitReturns": true,
// "noFallthroughCasesInSwitch": 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-nodehid" },
{ "path": "./packages/hdwallet-keepkey-nodewebusb" },
{ "path": "./packages/hdwallet-keepkey-tcp" },
{ "path": "./packages/hdwallet-keepkey-electron" },
{ "path": "./packages/hdwallet-keepkey-webusb" },
{ "path": "./packages/hdwallet-ledger" },
{ "path": "./packages/hdwallet-ledger-webusb" },
{ "path": "./packages/hdwallet-native" },
{ "path": "./packages/hdwallet-portis" },
{ "path": "./packages/hdwallet-trezor" },
{ "path": "./packages/hdwallet-trezor-connect" },
{ "path": "./packages/hdwallet-metamask" }
]
}