lev-doks/.vscode/tasks.json

24 lines
560 B
JSON
Raw Normal View History

2025-10-06 22:48:30 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Autodoc: Build & Watch",
"type": "shell",
"command": "autodoc -bw",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Autodoc: Build",
"type": "shell",
"command": "autodoc -b",
"problemMatcher": [],
"group": "build"
}
]
}