Newer
Older
TelosDB / .vscode / launch.json
@楽曲作りまくりおじさん 楽曲作りまくりおじさん 8 days ago 426 bytes Add MCP server with llama.cpp integration and docs
{
  "version": "0.2.0",
  "configurations": [
    {
      "type": "node",
      "request": "launch",
      "name": "Debug Electron (Bun)",
      "runtimeExecutable": "bun",
      "runtimeArgs": [
        "run",
        "electron",
        "."
      ],
      "cwd": "${workspaceFolder}",
      "protocol": "inspector",
      "env": {
        "NODE_ENV": "development"
      },
      "console": "integratedTerminal"
    }
  ]
}