{
    // 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
    //
    // Use Ctrl+Shift+P to Select Interpreter
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python",
            "type": "python",
            "request": "launch",
            "program": "${workspaceFolder}/backend-python/main.py",
            "console": "integratedTerminal",
            "justMyCode": false
        },
        {
            "name": "Golang",
            "type": "go",
            "request": "launch",
            "mode": "exec",
            "program": "${workspaceFolder}/build/bin/testwails.exe",
            "console": "integratedTerminal",
            "preLaunchTask": "build dev"
        },
        {
            "name": "Frontend",
            "type": "node-terminal",
            "request": "launch",
            "command": "wails dev -browser"
        }
    ]
}