ona/.vscode/tasks.json

26 lines
505 B
JSON
Raw Normal View History

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