blob: 038b87674e745b843e0d164eb8a9c2f4b911271e [file] [edit]
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "attach",
"name": "Attach",
"pid": "${command:pickMyProcess}" // use ${command:pickProcess} to pick other users' processes
},
{
"name": "(Windows) Attach",
"type": "cppvsdbg",
"request": "attach",
"processId": "${command:pickProcess}",
},
{
// Used for testing the extension.
"name": "Run Installed Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/lsp",
"--log rust-lang.rust-analyzer:debug"
],
"outFiles": [
"${workspaceFolder}/lsp/dist/**/*.js"
],
"preLaunchTask": "build extension",
"skipFiles": [
"<node_internals>/**/*.js"
]
}
]
}