24 lines
598 B
JSON
24 lines
598 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "debug",
|
|
"program": "${workspaceRoot}",
|
|
"env": {},
|
|
"args": [],
|
|
"showLog": true,
|
|
},
|
|
{
|
|
"name": "Build & Run",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "exec",
|
|
"program": "${workspaceFolder}/bin/hello",
|
|
"console": "integratedTerminal",
|
|
"preLaunchTask": "go build",
|
|
},
|
|
]
|
|
} |