gameflow-deck/.vscode/launch.json

32 lines
No EOL
974 B
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": [
{
"name": "Attach to Edge",
"port": 9222,
"request": "attach",
"type": "msedge",
"webRoot": "${workspaceFolder}/src",
},
{
"type": "bun",
"internalConsoleOptions": "neverOpen",
"request": "attach",
"name": "Attach Bun",
"url": "ws://127.0.0.1:9229/7lt63qegtr8",
"localRoot": "${workspaceFolder}",
"stopOnEntry": false,
}
],
"compounds": [
{
"name": "Attach Debug App",
"configurations": ["Attach Bun", "Attach to Edge"],
"stopAll": true,
"preLaunchTask": "bun: dev"
}
]
}