Skip to content

Commit

Permalink
vscode: Update launch and task definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
alcarney committed May 3, 2024
1 parent 7e4d9e7 commit 768104d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 15 deletions.
5 changes: 1 addition & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,7 @@
"outFiles": [
"${workspaceRoot}/code/dist/node/**/*.js"
],
// "preLaunchTask": "${defaultBuildTask}",
"env": {
// "VSCODE_LSP_DEBUG": "true"
}
"preLaunchTask": "${defaultBuildTask}",
},
{
"name": "VSCode Web Extension",
Expand Down
19 changes: 8 additions & 11 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"label": "npm: watch",
"type": "process",
"isBackground": true,
"command": "make",
"args": [
"watch"
],
"options": {
"cwd": "${workspaceRoot}/code"
},
Expand All @@ -14,17 +18,10 @@
},
"presentation": {
"panel": "dedicated",
"reveal": "never"
"reveal": "always"
},
"problemMatcher": [
{
"base": "$tsc-watch",
"background": {
"activeOnStart": true,
"beginsPattern": "asset .*",
"endsPattern": "webpack .* compiled .*"
}
}
"$tsc-watch"
]
},
{
Expand Down

0 comments on commit 768104d

Please sign in to comment.