-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
45 lines (45 loc) · 921 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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2019",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./packages",
"incremental": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"paths": {
"@metamask-institutional/*": ["./packages/*/src/index.ts"]
}
},
"references": [
{
"path": "packages/transactionUpdate"
},
{
"path": "packages/configurationClient"
},
{
"path": "packages/custodyKeyring"
},
{
"path": "packages/sdk"
},
{
"path": "packages/simpleCache"
},
{
"path": "packages/types"
},
{
"path": "packages/websocketClient"
}
],
"exclude": ["node_modules", "dist", "*.d.ts"],
"files": []
}