Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoão Moreno <joao.moreno@microsoft.com>2020-04-17 18:38:50 +0300
committerJoão Moreno <joao.moreno@microsoft.com>2020-04-17 18:38:50 +0300
commit5252b76e2b5c7f12ddd1dc8e234673e015d428de (patch)
tree9cfb3b41e6aaac92be51f64d78b07518643b3eba /.vscode/launch.json
parent6102b5b6fd7139ebadab1877bd408497f217f5da (diff)
add shared process to vs code launch config
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json11
1 files changed, 6 insertions, 5 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 5ff0436292a..b75f14c30a8 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -21,11 +21,11 @@
]
},
{
- "type": "chrome",
+ "type": "pwa-chrome",
"request": "attach",
"name": "Attach to Shared Process",
"port": 9222,
- "urlFilter": "*"
+ "urlFilter": "*sharedProcess.html*",
},
{
"type": "node",
@@ -359,14 +359,15 @@
],
"compounds": [
{
- "name": "Debug VS Code Main, Renderer & Extension Host",
+ "name": "VS Code",
"configurations": [
"Launch VS Code",
"Attach to Main Process",
- "Attach to Extension Host"
+ "Attach to Extension Host",
+ "Attach to Shared Process",
],
"presentation": {
- "group": "1_vscode",
+ "group": "0_vscode",
"order": 1
}
},