house-at-pooh-corner/.vscode/tasks.json
2026-01-26 10:45:38 -05:00

17 lines
353 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "mdbook: serve",
"type": "shell",
"command": "mdbook serve"
},
{
"label": "mdbook: clean",
"type": "shell",
"command": "mdbook clean"
}
]
}