vscode: skip node internals while debugging

This commit is contained in:
Veetaha 2020-02-16 20:20:30 +02:00
parent 3a1c7808a4
commit 29c7cbb46f

8
.vscode/launch.json vendored
View file

@ -23,7 +23,10 @@
"outFiles": [
"${workspaceFolder}/editors/code/out/**/*.js"
],
"preLaunchTask": "Build Extension"
"preLaunchTask": "Build Extension",
"skipFiles": [
"<node_internals>/**/*.js"
]
},
{
// Used for testing theextension with a local build of the LSP server (in `target/debug`).
@ -39,6 +42,9 @@
"${workspaceFolder}/editors/code/out/**/*.js"
],
"preLaunchTask": "Build Extension",
"skipFiles": [
"<node_internals>/**/*.js"
],
"env": {
"__RA_LSP_SERVER_DEBUG": "${workspaceFolder}/target/debug/ra_lsp_server"
}