{ // 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$", } } } ] }