File tree Expand file tree Collapse file tree 4 files changed +3413
-410
lines changed Expand file tree Collapse file tree 4 files changed +3413
-410
lines changed Original file line number Diff line number Diff line change 12
12
"name" : " Run frontend" ,
13
13
"request" : " launch" ,
14
14
"type" : " node-terminal" ,
15
- "preLaunchTask" : " RunAPI " ,
15
+ "preLaunchTask" : " RunAllTasks " ,
16
16
"resolveSourceMapLocations" : [
17
17
" ${workspaceFolder}/**" ,
18
18
" !**/node_modules/**"
19
19
]
20
- },
21
- {
22
- "name" : " Launch Edge" ,
23
- "request" : " launch" ,
24
- "type" : " pwa-msedge" ,
25
- "url" : " https://localhost:4280" ,
26
- "webRoot" : " ${workspaceFolder}"
27
- },
20
+ }
28
21
],
29
22
"compounds" : [
30
23
{
31
24
"name" : " Launch it all 🚀" ,
32
25
"configurations" : [
33
26
" Run frontend" ,
34
- " Run emulator" ,
35
- " Launch Edge"
27
+ " Run emulator"
36
28
]
37
29
}
38
30
]
Original file line number Diff line number Diff line change 1
1
{
2
2
"version" : " 2.0.0" ,
3
3
"tasks" : [
4
+ {
5
+ "label" : " RunAllTasks" ,
6
+ "dependsOn" : [" RunAPI" , " RunAzurite" ]
7
+ },
8
+ {
9
+ "label" : " RunAzurite" ,
10
+ "type" : " shell" ,
11
+ "command" : " azurite" ,
12
+ "isBackground" : true ,
13
+ "problemMatcher" : {
14
+ "pattern" : [
15
+ {
16
+ "regexp" : " ." ,
17
+ "file" : 1 ,
18
+ "location" : 2 ,
19
+ "message" : 3
20
+ }
21
+ ],
22
+ "background" : {
23
+ "activeOnStart" : true ,
24
+ "beginsPattern" : " ." ,
25
+ "endsPattern" : " ."
26
+ }
27
+ }
28
+
29
+ },
4
30
{
5
31
"label" : " RunAPI" ,
6
32
"type" : " shell" ,
You can’t perform that action at this time.
0 commit comments