代码改变世界

vscode go 调试 launch.json

2020-03-02 13:32  ycliu912  阅读(4667)  评论(0编辑  收藏  举报
{
    // 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": [
        {
            "name": "Launch",
            "type": "go",
            "request": "launch",
            "mode": "auto",
            "program": "${workspaceFolder}"//"{file}",
            "env": {},
            "args": []
        }
    ]
}