openquest/.vscode/launch.json

83 lines
2.4 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": [
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'openquest-rs'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=openquest-rs"
],
"filter": {
"name": "openquest-rs",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug integration test 'mod'",
"cargo": {
"args": [
"test",
"--no-run",
"--test=mod",
"--package=openquest-rs"
],
"filter": {
"name": "mod",
"kind": "test"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'openquest-lsp'",
"cargo": {
"args": [
"build",
"--bin=openquest-lsp",
"--package=openquest-lsp"
],
"filter": {
"name": "openquest-lsp",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'openquest-lsp'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=openquest-lsp",
"--package=openquest-lsp"
],
"filter": {
"name": "openquest-lsp",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}