{
"version": "2.0.0",
"tasks": [
{
"label": "Build Debug",
"type": "shell",
"command": "odin",
"args": [
"build",
"${workspaceFolder}", // Builds the currently open file. Change this to your specific project entry file if needed.
"-out:${workspaceFolder}/build/test",
"-debug"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
},
"problemMatcher": []
}
]
}