Files
ValueScript/.vscode/launch.json
2023-06-20 13:03:16 +10:00

46 lines
1.0 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 executable 'vstc'",
"cargo": {
"args": [
"build",
"-p",
"vstc"
],
"filter": {
"name": "vstc",
"kind": "bin"
}
},
"args": ["run", "foo.ts"],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'value_script'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=value_script",
"--package=value_script"
],
"filter": {
"name": "value_script",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}