flecks/.vscode/tasks.json

22 lines
541 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-02-11 23:52:26 -06:00
"command": "npm run dox start --no-open",
2024-01-02 15:13:43 -06:00
"problemMatcher": {
"pattern": {
"regexp": "^Error",
},
"background": {
"activeOnStart": true,
"endsPattern": "compiled successfully$",
"beginsPattern": "Compiling Client$",
}
2024-01-06 16:19:48 -06:00
},
2024-01-02 15:13:43 -06:00
}
]
}