Introduce a --inspect-search CLI argument, and enter debug mode by default when built locally

This commit is contained in:
Rob Lourens
2017-09-04 14:08:40 -07:00
parent 3e23c21af9
commit 2ae090cdf6
5 changed files with 74 additions and 31 deletions

11
.vscode/launch.json vendored
View File

@@ -38,8 +38,8 @@
"type": "node",
"request": "attach",
"protocol": "inspector",
"name": "Attach to Search process",
"port": 7890,
"name": "Attach to Search Process",
"port": 5876,
"outFiles": [
"${workspaceRoot}/out/**/*.js"
]
@@ -177,6 +177,13 @@
"Launch VS Code",
"Attach to Main Process"
]
},
{
"name": "Search and Renderer processes",
"configurations": [
"Launch VS Code",
"Attach to Search Process"
]
}
]
}