D3vugu-components/.vscode/launch.json

21 lines
663 B
JSON
Raw Normal View History

2023-05-08 18:43:07 +00:00
{
// 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 dev server on windows",
"type": "go",
"request": "launch",
"mode": "auto",
2023-05-09 10:29:13 +00:00
"program": "${workspaceFolder}/scripts/dev-server/devserver.go",
2023-05-08 18:43:07 +00:00
"env": {
"GOOS": "windows",
"GOARCH": "amd64"
},
2023-05-09 10:29:13 +00:00
"args": [],
"cwd": "${workspaceFolder}"
2023-05-08 18:43:07 +00:00
}
]
}