flecks/.vscode/tasks.json
2024-02-02 06:38:31 -06:00

22 lines
538 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Start Docusaurus server",
"type": "shell",
"command": "yarn dox start --no-open",
"problemMatcher": {
"pattern": {
"regexp": "^Error",
},
"background": {
"activeOnStart": true,
"endsPattern": "compiled successfully$",
"beginsPattern": "Compiling Client$",
}
},
}
]
}