AI_Diplomacy/.vscode/launch.json
2025-05-28 10:38:16 -07:00

19 lines
432 B
JSON

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