/ .vscode / launch.json
launch.json
 1  {
 2      "version": "0.2.0",
 3      "configurations": [
 4          {
 5              "type": "bun",
 6              "request": "launch",
 7              "name": "Start",
 8              "program": "${workspaceFolder}/src/app.ts",
 9              "args": [],
10              "cwd": "${workspaceFolder}",
11              "env": {},
12              "strictEnv": false,
13              "watchMode": true,
14              "stopOnEntry": false,
15              "noDebug": false,
16              "runtime": "bun",
17              "runtimeArgs": [],
18              "internalConsoleOptions": "openOnSessionStart"
19          }
20      ]
21  }