ona/.vscode/tasks.json

25 lines
408 B
JSON
Raw Permalink Normal View History

2023-04-19 01:25:35 +02:00
{
"version": "2.0.0",
"tasks": [
{
2023-07-10 02:10:56 +02:00
"label": "Build All",
"type": "shell",
"command": "zig build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$zig",
2023-04-19 01:25:35 +02:00
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
2023-07-10 02:10:56 +02:00
"showReuseMessage": false,
2023-04-19 01:25:35 +02:00
"clear": true,
"revealProblems": "onProblem",
2023-07-10 02:10:56 +02:00
}
2023-04-19 01:25:35 +02:00
}
]
}