chuanyue-service/.vscode/launch.json
2024-04-12 15:07:58 +08:00

18 lines
469 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "rust",
"type": "lldb",
"request": "launch",
"program": "${workspaceRoot}/target/debug/${workspaceFolderBasename}",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"environment": [],
"preLaunchTask":"build",
"externalConsole": true,
}
]
}