Skip to content

Commit d7b952c

Browse files
committed
extension: Fix locally unresolved defaultBuildTask
Using a complex VS Code/Codium workspace locally, upon launching Run Extension for debugging or plain running, this removes the manual prompt previously described in #13. So, rather than relying on defaultBuildTask as preLaunchTask, explicitly (directly) define the latter as the hereby expected build task. This fixes the issue in the local case of using a complex workspace; i.e., made of many project folders holding such isDefault task definitions. Fixes #13. Signed-off-by: Marco Miller <marco.miller@ericsson.com>
1 parent be99123 commit d7b952c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"request": "launch",
1313
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
1414
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
15-
"preLaunchTask": "${defaultBuildTask}"
15+
"preLaunchTask": "npm: watch"
1616
},
1717
{
1818
"name": "Extension Tests",

0 commit comments

Comments
 (0)