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

19 lines
421 B
JSON

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