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:
authorConnor Peet <connor@peet.io>2022-06-08 12:11:13 +0300
committerGitHub <noreply@github.com>2022-06-08 12:11:13 +0300
commit21e6c2aac04d4a24126e5e670a0ef0459d830727 (patch)
tree1064b6a03a89d66d9bf25481fddaa899ff360466
parent7734233bce2024ba26ab6774a1fd6fe9f6d1a0e9 (diff)
debug: enable crash reporter when running debugging (#151430)
-rw-r--r--.vscode/launch.json7
1 files changed, 2 insertions, 5 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index dd295c02db4..236fc3de8c3 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -16,11 +16,7 @@
"request": "attach",
"restart": true,
"name": "Attach to Extension Host",
- // set to a large number: if there is an issue we're debugging that keeps
- // the extension host from coming up, or the renderer is paused/crashes
- // before it happens, developers will get an annoying alert, e.g. #126826.
- // This can be set to 0 in 1.59.
- "timeout": 999999999,
+ "timeout": 0,
"port": 5870,
"outFiles": [
"${workspaceFolder}/out/**/*.js",
@@ -244,6 +240,7 @@
"runtimeArgs": [
"--inspect=5875",
"--no-cached-data",
+ "--crash-reporter-directory=${workspaceFolder}/.profile-oss/crashes",
// for general runtime freezes: https://github.com/microsoft/vscode/issues/127861#issuecomment-904144910
"--disable-features=CalculateNativeWinOcclusion",
],