joyful/.vscode/tasks.json
Anna Rose Wiggins 9d262977f9 Add text-to-speech support. (#13)
Reviewed-on: #13
Co-authored-by: Anna Rose Wiggins <annabunches@gmail.com>
Co-committed-by: Anna Rose Wiggins <annabunches@gmail.com>
2025-07-29 19:59:54 +00:00

40 lines
No EOL
857 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/",
"./..."
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "Test Project",
"args": [
"test",
"./..."
],
"group": {
"kind": "test",
"isDefault": true
},
"problemMatcher": []
}
],
}