rust/.vscode/launch.json

48 lines
1.3 KiB
JSON
Raw Normal View History

{
// 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": [
{
2019-12-30 00:15:39 +01:00
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
2019-12-30 00:15:39 +01:00
"--extensionDevelopmentPath=${workspaceFolder}/editors/code"
],
2019-12-30 00:15:39 +01:00
"outFiles": [
2019-12-30 02:22:52 +01:00
"${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"
2019-12-30 00:15:39 +01:00
],
2019-12-30 02:22:52 +01:00
"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}",
2019-12-30 00:15:39 +01:00
"sourceLanguages": [
"rust"
]
},
]
}