-
Notifications
You must be signed in to change notification settings - Fork 49
/
yoroi.code-workspace
98 lines (98 loc) · 2.15 KB
/
yoroi.code-workspace
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"folders": [
{
"name": "root",
"path": "."
},
{
"name": "@yoroi/types",
"path": "./packages/types"
},
{
"name": "@yoroi/swap",
"path": "./packages/swap"
},
{
"name": "@yoroi/links",
"path": "./packages/links"
},
{
"name": "@yoroi/theme",
"path": "./packages/theme"
},
{
"name": "@yoroi/exchange",
"path": "./packages/exchange"
},
{
"name": "@yoroi/transfer",
"path": "./packages/transfer"
},
{
"name": "@yoroi/setup-wallet",
"path": "./packages/setup-wallet"
},
{
"name": "@yoroi/api",
"path": "./packages/api"
},
{
"name": "@yoroi/identicon",
"path": "./packages/identicon"
},
{
"name": "@yoroi/explorers",
"path": "./packages/explorers"
},
{
"name": "@yoroi/resolver",
"path": "./packages/resolver"
},
{
"name": "@yoroi/common",
"path": "./packages/common"
},
{
"name": "@yoroi/staking",
"path": "./packages/staking"
},
{
"name": "@yoroi/dapp-connector",
"path": "./packages/dapp-connector"
},
{
"name": "@yoroi/portfolio",
"path": "./packages/portfolio"
},
{
"name": "@yoroi/wallet-mobile",
"path": "./apps/wallet-mobile"
},
{
"name": "@yoroi/notifications",
"path": "./packages/notifications"
},
{
"name": "@yoroi/claim",
"path": "./packages/claim"
},
{
"name": "@yoroi/e2e-wallet-mobile",
"path": "./e2e/wallet-mobile"
},
],
"settings": {
"jest.disabledWorkspaceFolders": [
"root"
],
"jest.pathToJest": "node_modules/.bin/jest",
"jest.pathToConfig": "./jest.config.js",
"java.compile.nullAnalysis.mode": "automatic",
"typescript.preferGoToSourceDefinition": true,
"typescript.referencesCodeLens.enabled": true,
"typescript.tsserver.maxTsServerMemory": 12072,
"typescript.tsdk": "root/node_modules/typescript/lib",
"javascript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.importModuleSpecifier": "relative"
}
}