gameflow-deck/.vscode/launch.json

38 lines
No EOL
1.2 KiB
JSON

{
// 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": "neverOpen",
"request": "launch",
"name": "Debug File",
"program": "./src/bun/index.ts",
"cwd": "${workspaceFolder}",
"stopOnEntry": false,
"watchMode": true
},
{
"type": "bun",
"internalConsoleOptions": "neverOpen",
"request": "launch",
"name": "Run File",
"program": "./src/bun/index.ts",
"cwd": "${workspaceFolder}",
"noDebug": true,
"watchMode": false
},
{
"type": "bun",
"internalConsoleOptions": "neverOpen",
"request": "attach",
"name": "Attach Bun",
"url": "ws://127.0.0.1:9229/nvnfnsqez8s",
"localRoot": "${workspaceFolder}",
"stopOnEntry": false
}
]
}