Skip to content

Commit b922772

Browse files
committed
Update VS Code node debug
1 parent a09d998 commit b922772

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

.vscode/launch.json

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
* Copyright (c) Rowe Wilson Frederisk Holme. All rights reserved.
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
5-
65
// A launch configuration that launches the extension inside a new window
76
// Use IntelliSense to learn about possible attributes.
87
// Hover to view descriptions of existing attributes.
@@ -12,7 +11,7 @@
1211
"configurations": [
1312
{
1413
"name": "Launch Extension",
15-
"type": "extensionHost",
14+
"type": "pwa-extensionHost",
1615
"request": "launch",
1716
"runtimeExecutable": "${execPath}",
1817
"args": [
@@ -25,8 +24,8 @@
2524
"preLaunchTask": "npm: compile"
2625
},
2726
{
28-
"name": "Launch Extension With Other Extensions",
29-
"type": "extensionHost",
27+
"name": "Launch Extension with Other Extensions",
28+
"type": "pwa-extensionHost",
3029
"request": "launch",
3130
"runtimeExecutable": "${execPath}",
3231
"args": [
@@ -37,9 +36,22 @@
3736
],
3837
"preLaunchTask": "npm: compile"
3938
},
39+
{
40+
"name": "Launch Extension of The Last Building",
41+
"type": "pwa-extensionHost",
42+
"request": "launch",
43+
"runtimeExecutable": "${execPath}",
44+
"args": [
45+
"--disable-extensions",
46+
"--extensionDevelopmentPath=${workspaceFolder}"
47+
],
48+
"outFiles": [
49+
"${workspaceFolder}/dist/**/*.js"
50+
],
51+
},
4052
{
4153
"name": "Extension Tests",
42-
"type": "extensionHost",
54+
"type": "pwa-extensionHost",
4355
"request": "launch",
4456
"runtimeExecutable": "${execPath}",
4557
"args": [

0 commit comments

Comments
 (0)