Created
May 21, 2021 02:59
-
-
Save hamza72x/821c895c2ad7b908adff6d1b450a1911 to your computer and use it in GitHub Desktop.
.vscode/launch.json for golang
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Build & Run", | |
"type": "go", | |
"request": "launch", | |
"mode": "exec", | |
"preLaunchTask": "go-build", // check tasks.json file | |
"program": "exec" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment