48 lines
1.3 KiB
JSON
48 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": [
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug Tauri Development",
|
|
"cargo": {
|
|
"args": [
|
|
"build",
|
|
"--bin=ziemniak",
|
|
"--package=ziemniak",
|
|
"--no-default-features"
|
|
]
|
|
},
|
|
// task for the `beforeDevCommand` if used, must be configured in `.vscode/tasks.json`
|
|
"preLaunchTask": "ui:dev"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug Tauri Unit Tests",
|
|
"cargo": {
|
|
"args": ["test", "--no-run", "--bin=ziemniak", "--package=ziemniak"],
|
|
"filter": {
|
|
"name": "ziemniak",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Tauri Production Debug",
|
|
"cargo": {
|
|
"args": ["build", "--release", "--manifest-path=./src-tauri/Cargo.toml"]
|
|
},
|
|
// task for the `beforeBuildCommand` if used, must be configured in `.vscode/tasks.json`
|
|
"preLaunchTask": "ui:build"
|
|
}
|
|
]
|
|
}
|