ona/.vscode/tasks.json

25 lines
408 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build All",
"type": "shell",
"command": "zig build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$zig",
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true,
"revealProblems": "onProblem",
}
}
]
}