WIP push-to-talk Letta chat frontend
at main 971 B view raw
1{ 2 // Use IntelliSense to learn about possible attributes. 3 // Hover to view descriptions of existing attributes. 4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 "version": "0.2.0", 6 "configurations": [ 7 { 8 "type": "lldb", 9 "request": "launch", 10 "name": "Tauri Development Debug", 11 "cargo": { 12 "args": [ 13 "build", 14 "--manifest-path=./src-tauri/Cargo.toml", 15 "--no-default-features" 16 ] 17 }, 18 // task for the `beforeDevCommand` if used, must be configured in `.vscode/tasks.json` 19 "preLaunchTask": "ui:dev" 20 }, 21 { 22 "type": "lldb", 23 "request": "launch", 24 "name": "Tauri Production Debug", 25 "cargo": { 26 "args": ["build", "--release", "--manifest-path=./src-tauri/Cargo.toml"] 27 }, 28 // task for the `beforeBuildCommand` if used, must be configured in `.vscode/tasks.json` 29 "preLaunchTask": "ui:build" 30 } 31 ] 32}