flecks/.vscode/tasks.json

22 lines
540 B
JSON
Raw Normal View History

2024-01-02 15:13:43 -06:00
{
// 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",
2024-01-04 03:21:07 -06:00
"command": "npx flecks docusaurus start",
2024-01-02 15:13:43 -06:00
"problemMatcher": {
"pattern": {
"regexp": "^Error",
},
"background": {
"activeOnStart": true,
"endsPattern": "compiled successfully$",
"beginsPattern": "Compiling Client$",
}
}
}
]
}