-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkspace.code-workspace
124 lines (124 loc) · 2.51 KB
/
workspace.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"settings": {
"conventionalCommits.scopes": [
"rpc",
"authentication",
"transactions"
],
"dart.flutterSdkPath": "~/.asdf/installs/flutter/3.22.3-stable"
},
"extensions": {
"recommendations": [
"vivaxy.vscode-conventional-commits",
"dart-code.flutter"
]
},
"folders": [
{
"path": "."
},
{
"path": "packages/archethic-wallet-client-dart"
},
{
"path": "packages/libdart"
},
{
"path": "packages/messaging_dart_sdk"
},
{
"path": "packages/archethic-dapp-framework-flutter"
},
{
"path": "apps/archethic-wallet"
},
{
"path": "apps/dex"
},
{
"path": "apps/bridge"
}
],
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "archethic-wallet",
"cwd": "${workspaceFolder:archethic-wallet}",
"request": "launch",
"type": "dart",
"program": "lib/main.dart"
},
{
"name": "archethic-wallet (profile mode)",
"cwd": "${workspaceFolder:archethic-wallet}",
"request": "launch",
"type": "dart",
"flutterMode": "profile",
"program": "lib/main.dart"
},
{
"name": "archethic-wallet (release mode)",
"cwd": "${workspaceFolder:archethic-wallet}",
"request": "launch",
"type": "dart",
"flutterMode": "release",
"program": "lib/main.dart"
},
{
"name": "dex",
"cwd": "${workspaceFolder:dex}",
"request": "launch",
"type": "dart",
"program": "lib/main.dart"
},
{
"name": "dex (profile mode)",
"cwd": "${workspaceFolder:dex}",
"request": "launch",
"type": "dart",
"flutterMode": "profile",
"program": "lib/main.dart"
},
{
"name": "dex (release mode)",
"cwd": "${workspaceFolder:dex}",
"request": "launch",
"type": "dart",
"flutterMode": "profile",
"program": "lib/main.dart"
},
{
"name": "bridge",
"cwd": "${workspaceFolder:bridge}",
"request": "launch",
"type": "dart",
"program": "lib/main.dart"
},
{
"name": "bridge (profile mode)",
"cwd": "${workspaceFolder:bridge}",
"request": "launch",
"type": "dart",
"flutterMode": "profile",
"program": "lib/main.dart"
},
{
"name": "bridge (release mode)",
"cwd": "${workspaceFolder:bridge}",
"request": "launch",
"type": "dart",
"flutterMode": "profile",
"program": "lib/main.dart"
},
{
"name": "AWC example",
"cwd": "${workspaceFolder:archethic-wallet-client-dart}/example",
"request": "launch",
"type": "dart",
"program": "lib/main.dart"
}
],
"compounds": []
}
}