AI_Diplomacy/.vscode/launch.json
Tyler Marques 9333f531bd
WIP: Fixing no events in queue
Had a bug where we'd do down a path that didn't result in calling the
nextPhase, meaning we'd end up with zero events in the queue and then
just sit there. Wasn't great.
2025-06-16 09:39:30 -07:00

19 lines
434 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "Chrome Debug 5179",
"url": "http://localhost:5179",
"webRoot": "${workspaceFolder}/ai_animation/",
"sourceMapPathOverrides": {
"http://localhost:5179/*": "${webRoot}/*"
},
"runtimeArgs": [
"--remote-debugging-port=9223"
],
"sourceMaps": true
}
]
}