flecks/.vscode/tasks.json
2024-01-13 14:21:03 -06:00

22 lines
541 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": "npx flecks docusaurus start",
"problemMatcher": {
"pattern": {
"regexp": "^Error",
},
"background": {
"activeOnStart": true,
"endsPattern": "compiled successfully$",
"beginsPattern": "Compiling Client$",
}
},
}
]
}