Add tasks file for vscode (#2846)

This commit is contained in:
Jesse Hills 2023-04-16 16:37:44 +12:00 committed by GitHub
parent b30b319056
commit f93e2cd673
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

11
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,11 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Live HTML build",
"type": "shell",
"command": "make live-html",
"problemMatcher": []
},
]
}