joyful/.vscode/tasks.json

27 lines
No EOL
554 B
JSON

{
"version": "2.0.0",
"type": "shell",
"command": "go",
"options": {
"cwd": "${workspaceFolder}",
},
"presentation": {
"reveal": "never",
"revealProblems": "onProblem",
},
"tasks": [
{
"label": "Build Project",
"args": [
"build",
"-o",
"build/",
"./cmd/joyful",
],
"group": {
"kind": "build",
"isDefault": true,
},
},
],
}