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 22:22:39 +0300
committerJoão Moreno <joao.moreno@microsoft.com>2020-04-17 22:22:49 +0300
commitc5e8b2382212aea9572154cfef96acc18684e71f (patch)
treebd4582d828efbe9140989cf6950e70aa45571735 /.vscode/launch.json
parent174f63af9634191e95468b13c30f6006925b83e8 (diff)
clean launch.json
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json35
1 files changed, 11 insertions, 24 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 8528cb7f823..4847944be48 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -19,7 +19,10 @@
"port": 5870,
"outFiles": [
"${workspaceFolder}/out/**/*.js"
- ]
+ ],
+ "presentation": {
+ "hidden": true
+ }
},
{
"type": "pwa-chrome",
@@ -27,6 +30,9 @@
"name": "Attach to Shared Process",
"port": 9222,
"urlFilter": "*sharedProcess.html*",
+ "presentation": {
+ "hidden": true
+ }
},
{
"type": "node",
@@ -194,43 +200,24 @@
{
"type": "node",
"request": "launch",
- "name": "Launch VS Code (Main Process)",
- "runtimeExecutable": "${workspaceFolder}/scripts/code.sh",
- "windows": {
- "runtimeExecutable": "${workspaceFolder}/scripts/code.bat",
- },
- "runtimeArgs": [
- "--no-cached-data"
- ],
- "outFiles": [
- "${workspaceFolder}/out/**/*.js"
- ],
- "presentation": {
- "group": "2_launch",
- "order": 1
- }
- },
- {
- "type": "node",
- "request": "launch",
- "name": "Launch VS Code (Web)",
+ "name": "VS Code (Web)",
"runtimeExecutable": "yarn",
"runtimeArgs": [
"web"
],
"presentation": {
- "group": "2_launch",
+ "group": "0_vscode",
"order": 2
}
},
{
"type": "chrome",
"request": "launch",
- "name": "Launch VS Code (Web, Chrome)",
+ "name": "VS Code (Web, Chrome)",
"url": "http://localhost:8080",
"preLaunchTask": "Run web",
"presentation": {
- "group": "2_launch",
+ "group": "0_vscode",
"order": 3
}
},