Skip to content

Commit 1d371c0

Browse files
committed
Fix debug tasks for hosts.
1 parent 4929eea commit 1d371c0

File tree

1 file changed

+37
-9
lines changed

1 file changed

+37
-9
lines changed

.vscode/tasks.json

Lines changed: 37 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,15 @@
2828
},
2929
{
3030
"label": "Debug: Excel Desktop",
31-
"type": "npm",
32-
"script": "start:desktop -- --app excel",
31+
"type": "shell",
32+
"command": "npm",
33+
"args": [
34+
"run",
35+
"start:desktop",
36+
"--",
37+
"--app",
38+
"excel",
39+
],
3340
"presentation": {
3441
"clear": true,
3542
"panel": "dedicated"
@@ -38,8 +45,15 @@
3845
},
3946
{
4047
"label": "Debug: Outlook Desktop",
41-
"type": "npm",
42-
"script": "start:desktop -- --app outlook",
48+
"type": "shell",
49+
"command": "npm",
50+
"args": [
51+
"run",
52+
"start:desktop",
53+
"--",
54+
"--app",
55+
"outlook",
56+
],
4357
"presentation": {
4458
"clear": true,
4559
"panel": "dedicated"
@@ -48,8 +62,15 @@
4862
},
4963
{
5064
"label": "Debug: PowerPoint Desktop",
51-
"type": "npm",
52-
"script": "start:desktop -- --app powerpoint",
65+
"type": "shell",
66+
"command": "npm",
67+
"args": [
68+
"run",
69+
"start:desktop",
70+
"--",
71+
"--app",
72+
"powerpoint",
73+
],
5374
"presentation": {
5475
"clear": true,
5576
"panel": "dedicated"
@@ -58,8 +79,15 @@
5879
},
5980
{
6081
"label": "Debug: Word Desktop",
61-
"type": "npm",
62-
"script": "start:desktop -- --app word",
82+
"type": "shell",
83+
"command": "npm",
84+
"args": [
85+
"run",
86+
"start:desktop",
87+
"--",
88+
"--app",
89+
"word",
90+
],
6391
"presentation": {
6492
"clear": true,
6593
"panel": "dedicated"
@@ -125,4 +153,4 @@
125153
"problemMatcher": []
126154
}
127155
]
128-
}
156+
}

0 commit comments

Comments
 (0)