Skip to content

Commit 7f6698b

Browse files
committed
chore: cleanup debug config
1 parent 79d9fb5 commit 7f6698b

File tree

1 file changed

+6
-16
lines changed

1 file changed

+6
-16
lines changed

.vscode/launch.json

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,20 @@
77
"configurations": [
88
{
99
// REVIEW: usually does not launch vscode on Windows
10-
"name": "Extension w Watch",
10+
"name": "extension (with watch)",
1111
"type": "extensionHost",
1212
"request": "launch",
1313
"env": {
1414
"DEBUG_EXTENSION_ENTRY": "true",
1515
"DEBUG_EXTENSION": "true"
1616
},
1717
"runtimeExecutable": "${execPath}",
18-
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
19-
"outFiles": ["${workspaceFolder}/out/**/*.js"],
20-
"preLaunchTask": "NPM: watch"
21-
},
22-
{
23-
"name": "Extension",
24-
"env": {
25-
"DEBUG_EXTENSION_ENTRY": "true",
26-
"DEBUG_EXTENSION": "true"
27-
},
28-
"type": "extensionHost",
29-
"request": "launch",
30-
"runtimeExecutable": "${execPath}",
31-
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
18+
"args": [
19+
"${workspaceFolder}/test", // open to test directory
20+
"--extensionDevelopmentPath=${workspaceFolder}"
21+
],
3222
"outFiles": ["${workspaceFolder}/out/**/*.js"],
33-
"preLaunchTask": "NPM: compile"
23+
"preLaunchTask": "${defaultBuildTask}"
3424
},
3525
{
3626
"name": "Tests exec",

0 commit comments

Comments
 (0)