gameflow-deck/.vscode/launch.json
Simeon Radivoev f15bf9a1e0
feat: Implemented launching and downloading of roms
This is just an initial implementation lots of kings to iron out
2026-02-19 16:10:29 +02:00

35 lines
No EOL
1,020 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/54esztvxlfe",
"localRoot": "${workspaceFolder}",
"stopOnEntry": false,
}
],
"compounds": [
{
"name": "Attach Debug App",
"configurations": [
"Attach Bun",
"Attach to Edge"
],
"stopAll": true,
"preLaunchTask": "bun: dev"
}
]
}