{
  // 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": "chrome",
      "request": "launch",
      "name": "client: chrome",
      "url": "http://localhost:3000",
      "webRoot": "${workspaceFolder}/.playground"
    },
    {
      "type": "node-terminal",
      "request": "launch",
      "name": "server: nuxt (terminal)",
      "command": "pnpm dev"
    },
    {
      "type": "node",
      "request": "launch",
      "name": "server: nuxt (debug)",
      "outputCapture": "std",
      "program": "${workspaceFolder}/node_modules/nuxi/bin/nuxi.mjs",
      "args": [
        "dev",
        ".playground"
      ]
    }
  ],
  "compounds": [
    {
      "name": "fullstack: nuxt (terminal)",
      "configurations": [
        "client: chrome",
        "server: nuxt (terminal)"
      ]
    },
    {
      "name": "fullstack: nuxt (debug)",
      "configurations": [
        "client: chrome",
        "server: nuxt (debug)"
      ]
    }
  ]
}
