{
   "version": "2.0.0",
    "tasks": [
      {
         "label": "build_dms",
         "type": "shell",
         "command": "npm run build",
         "options": {
            "cwd": "${workspaceFolder}"
         }
      },
      {
         "label": "start_dms_webserver",
         "type": "shell",
         "command": "npm run start",
         "isBackground": true,
         "presentation": {
            "echo": true,
            "reveal": "silent",
            "focus": false,
            "panel": "new",
            "showReuseMessage": false,
            "clear": true
         },
         "options": {
            "cwd": "${workspaceFolder}"
         }
      }
   ]
}