{
  // 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": "bun",
      "internalConsoleOptions": "openOnSessionStart",
      "request": "launch",
      "name": "SDK: Connect",
      "program": "../../packages/sdk/src/cli/cli.ts",
      "args": ["connect"],
      "cwd": "${workspaceFolder}/apps/asset-tokenization",
      "watchMode": true,
      "strictEnv": false,
      "stopOnEntry": false
    },
    {
      "type": "bun",
      "internalConsoleOptions": "openOnSessionStart",
      "request": "launch",
      "name": "SDK: Update Custom Deployment",
      "program": "../../packages/sdk/src/cli/cli.ts",
      "args": [
        "custom-deployment",
        "update",
        "--image-path",
        "ghcr.io/settlemint/starterkit-asset-tokenization:main",
        "--port",
        "3000"
      ],
      "cwd": "${workspaceFolder}/apps/asset-tokenization",
      "watchMode": true,
      "strictEnv": false,
      "stopOnEntry": false
    },
    {
      "name": "Next.js: debug server-side",
      "type": "node-terminal",
      "request": "launch",
      "command": "bun dev"
    },
    {
      "name": "Next.js: debug client-side",
      "type": "chrome",
      "request": "launch",
      "url": "http://localhost:3000"
    }
  ]
}
