Skip to content

Commit

Permalink
Custom configuration item for daemon compilation (#7178)
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne authored Aug 18, 2021
1 parent 4b45024 commit 8e33ee3
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,34 @@
"order": 1
}
},
{
"name": "Extension (with daemon compilation)",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceFolder}", "--enable-proposed-api"],
"stopOnEntry": false,
"smartStep": true,
"sourceMaps": true,
"outFiles": ["${workspaceFolder}/out/**/*", "!${workspaceFolder}/**/node_modules**/*"],
"skipFiles": ["<node_internals>/**"],
"env": {
// Disable this to turoff on redux & console logging during debugging
"VSC_JUPYTER_FORCE_LOGGING": "1",
// Enable this to try out new experiments locally
"VSC_JUPYTER_LOAD_EXPERIMENTS_FROM_FILE": "1",
// Enable this to log telemetry to the output during debugging
"XVSC_JUPYTER_LOG_TELEMETRY": "1",
// Enable this to log IPYWIDGET messages
"XVSC_JUPYTER_LOG_IPYWIDGETS": "1",
// Enable this to log debugger output. Directory must exist ahead of time
"XDEBUGPY_LOG_DIR": "${workspaceRoot}/tmp/Debug_Output_Ex"
},
"presentation": {
"group": "1_extension",
"order": 1
}
},
{
"name": "Extension (UI in Browser)",
"type": "extensionHost",
Expand Down

0 comments on commit 8e33ee3

Please sign in to comment.