mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
vscode: skip node internals while debugging
This commit is contained in:
parent
3a1c7808a4
commit
29c7cbb46f
1 changed files with 11 additions and 5 deletions
8
.vscode/launch.json
vendored
8
.vscode/launch.json
vendored
|
@ -23,7 +23,10 @@
|
||||||
"outFiles": [
|
"outFiles": [
|
||||||
"${workspaceFolder}/editors/code/out/**/*.js"
|
"${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`).
|
// Used for testing theextension with a local build of the LSP server (in `target/debug`).
|
||||||
|
@ -39,6 +42,9 @@
|
||||||
"${workspaceFolder}/editors/code/out/**/*.js"
|
"${workspaceFolder}/editors/code/out/**/*.js"
|
||||||
],
|
],
|
||||||
"preLaunchTask": "Build Extension",
|
"preLaunchTask": "Build Extension",
|
||||||
|
"skipFiles": [
|
||||||
|
"<node_internals>/**/*.js"
|
||||||
|
],
|
||||||
"env": {
|
"env": {
|
||||||
"__RA_LSP_SERVER_DEBUG": "${workspaceFolder}/target/debug/ra_lsp_server"
|
"__RA_LSP_SERVER_DEBUG": "${workspaceFolder}/target/debug/ra_lsp_server"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue