summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorKirill Dubovitskiy <kirill2003de@gmail.com>2023-08-06 18:48:30 -0700
committerKirill Dubovitskiy <kirill2003de@gmail.com>2023-08-06 18:48:30 -0700
commit400d1da490dab08a9b2ef2c88ab842ae5bc75620 (patch)
tree24dfa5980749952790abfa05db39255d89a79225 /.vscode/launch.json
parent1598a614b248085d16006b79cd55f6fbce4d6bf5 (diff)
downloadsncontinue-400d1da490dab08a9b2ef2c88ab842ae5bc75620.tar.gz
sncontinue-400d1da490dab08a9b2ef2c88ab842ae5bc75620.tar.bz2
sncontinue-400d1da490dab08a9b2ef2c88ab842ae5bc75620.zip
Added a launch configuration to start debugging both server + extension
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json14
1 files changed, 12 insertions, 2 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index f6a37bed..2c7d1a27 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -3,6 +3,16 @@
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
+ "compounds": [
+ {
+ "name": "Server + Extension (VSCode)",
+ "stopAll": true,
+ "configurations": [
+ "Server",
+ "Extension (VSCode)"
+ ]
+ }
+ ],
"configurations": [
{
"name": "Server",
@@ -19,7 +29,7 @@
// What about a watch task? - type errors?
},
{
- "name": "VSCode Extension",
+ "name": "Extension (VSCode)",
"type": "extensionHost",
"request": "launch",
"cwd": "${workspaceFolder}/extension",
@@ -29,7 +39,7 @@
"outFiles": [
"${workspaceFolder}/extension/out/**/*.js"
],
- "preLaunchTask": "vscode-extension:build-watch",
+ "preLaunchTask": "vscode-extension:build",
"env": {
"CONTINUE_SERVER_URL": "http://localhost:8001"
}