Skip to content

Instantly share code, notes, and snippets.

@tonytins
Created April 28, 2024 03:28
Show Gist options
  • Save tonytins/02217203612d43fb96b915ca20480065 to your computer and use it in GitHub Desktop.
Save tonytins/02217203612d43fb96b915ca20480065 to your computer and use it in GitHub Desktop.
Zig Tasks
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "zig build",
"type": "shell",
"command": "zig build"
},
{
"label": "zig run",
"type": "shell",
"command": "zig build run"
},
{
"label": "zig test",
"type": "shell",
"command": "zig build test"
},
{
"label": "zig WASM build",
"type": "shell",
"command": "zig build-exe src/main.zig -target wasm32-wasi"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment