mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-13 00:17:15 +00:00
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Run Extension",
|
|
"type": "extensionHost",
|
|
"request": "launch",
|
|
"runtimeExecutable": "${execPath}",
|
|
"args": [
|
|
"--extensionDevelopmentPath=${workspaceFolder}/editors/code"
|
|
],
|
|
"outFiles": [
|
|
"${workspaceFolder}/editors/code/out/**/*.js"
|
|
],
|
|
"preLaunchTask": "Build Extension"
|
|
},
|
|
{
|
|
"name": "Run Extension (Dev Server)",
|
|
"type": "extensionHost",
|
|
"request": "launch",
|
|
"runtimeExecutable": "${execPath}",
|
|
"args": [
|
|
"--extensionDevelopmentPath=${workspaceFolder}/editors/code"
|
|
],
|
|
"outFiles": [
|
|
"${workspaceFolder}/editors/code/out/**/*.js"
|
|
],
|
|
"preLaunchTask": "Build Extension",
|
|
"env": {
|
|
"__RA_LSP_SERVER_DEBUG": "${workspaceFolder}/target/debug/ra_lsp_server"
|
|
}
|
|
},
|
|
{
|
|
"name": "Debug Lsp Server",
|
|
"type": "lldb",
|
|
"request": "attach",
|
|
"program": "${workspaceFolder}/target/debug/ra_lsp_server",
|
|
"pid": "${command:pickMyProcess}",
|
|
"sourceLanguages": [
|
|
"rust"
|
|
]
|
|
},
|
|
]
|
|
}
|