{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Debug Odin Project with LLDB",
            "type": "lldb",
            "request": "launch",
            "program": "${workspaceFolder}/build/test",
            "args": [],
            "cwd": "${workspaceFolder}",
            "preLaunchTask": "Build Debug", // Match the label of your build task in tasks.json
            "terminal": "console"
        }
    ]
}