{
  // Use IntelliSense to learn about possible attributes.
  // Hover to view descriptions of existing attributes.
  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  "version": "0.2.0",
  "configurations": [
    {
      "type": "node",
      "request": "launch",
      "name": "dev serve",
      "runtimeExecutable": "npm",
      "runtimeArgs": [
        "--preserve-symlinks",
        "run-script",
        "dev"
      ],
      "skipFiles": [
        "<node_internals>/**"
      ],
      "autoAttachChildProcesses": true,
      "outputCapture": "console"
    },
    {
      "type": "firefox",
      "request": "launch",
      "name": "Firefox developer",
      "profile": "default",
      "url": "http://localhost:3000/",
      "webRoot": "${workspaceFolder}",
      "pathMappings": [
        {
          "url": "http://localhost:3000/src",
          "path": "${workspaceFolder}/src"
        },
        {
          "url": "http://localhost:3000/",
          "path": "${workspaceFolder}/src/views"
        }
      ],
      "reAttach": true,
      "timeout": 30000
    }
  ]
}
