Skip to content

Commit ebfb828

Browse files
Kapil Borledaviwil
Kapil Borle
authored andcommitted
Add a debug configuration to build only client
Also, most of whitespace in the file was *tabs* with only a few *spaces*. This commit also converts those few *spaces* to *tabs*.
1 parent 76ae7fa commit ebfb828

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

.vscode/launch.json

+15-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,27 @@
22
"version": "0.1.0",
33
"configurations": [
44
{
5-
"name": "Launch Extension",
6-
"type": "extensionHost",
7-
"request": "launch",
8-
"runtimeExecutable": "${execPath}",
5+
"name": "Launch Extension",
6+
"type": "extensionHost",
7+
"request": "launch",
8+
"runtimeExecutable": "${execPath}",
99
"args": [ "--extensionDevelopmentPath=${workspaceRoot}" ],
1010
"stopOnEntry": false,
1111
"sourceMaps": true,
1212
"outFiles": ["${workspaceRoot}/out"],
1313
"preLaunchTask": "BuildAll"
1414
},
15+
{
16+
"name": "Launch Extension (Build client only)",
17+
"type": "extensionHost",
18+
"request": "launch",
19+
"runtimeExecutable": "${execPath}",
20+
"args": [ "--extensionDevelopmentPath=${workspaceRoot}" ],
21+
"stopOnEntry": false,
22+
"sourceMaps": true,
23+
"outFiles": ["${workspaceRoot}/out"],
24+
"preLaunchTask": "Build"
25+
},
1526
{
1627
"name": "Attach",
1728
"type": "node",

0 commit comments

Comments
 (0)