22 lines
541 B
JSON
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": "npm run dox start --no-open",
|
|
"problemMatcher": {
|
|
"pattern": {
|
|
"regexp": "^Error",
|
|
},
|
|
"background": {
|
|
"activeOnStart": true,
|
|
"endsPattern": "compiled successfully$",
|
|
"beginsPattern": "Compiling Client$",
|
|
}
|
|
},
|
|
}
|
|
]
|
|
} |