Skip to content

Commit b6cdc75

Browse files
Merge pull request #514 from redanthrax/react
Updated for debugging in vscode
2 parents b505fb1 + 8f98772 commit b6cdc75

File tree

4 files changed

+3413
-410
lines changed

4 files changed

+3413
-410
lines changed

.vscode/launch.json

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,19 @@
1212
"name": "Run frontend",
1313
"request": "launch",
1414
"type": "node-terminal",
15-
"preLaunchTask": "RunAPI",
15+
"preLaunchTask": "RunAllTasks",
1616
"resolveSourceMapLocations": [
1717
"${workspaceFolder}/**",
1818
"!**/node_modules/**"
1919
]
20-
},
21-
{
22-
"name": "Launch Edge",
23-
"request": "launch",
24-
"type": "pwa-msedge",
25-
"url": "https://localhost:4280",
26-
"webRoot": "${workspaceFolder}"
27-
},
20+
}
2821
],
2922
"compounds": [
3023
{
3124
"name": "Launch it all 🚀",
3225
"configurations": [
3326
"Run frontend",
34-
"Run emulator",
35-
"Launch Edge"
27+
"Run emulator"
3628
]
3729
}
3830
]

.vscode/tasks.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,32 @@
11
{
22
"version": "2.0.0",
33
"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+
},
430
{
531
"label": "RunAPI",
632
"type": "shell",

0 commit comments

Comments
 (0)