mirror of
https://github.com/GoodStartLabs/AI_Diplomacy.git
synced 2026-04-22 16:49:15 +00:00
Changed the map to have the top left at 0,0, saving us from having to do a bunch of transformations for all the objects we want to add to the board.
19 lines
417 B
JSON
19 lines
417 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "firefox",
|
|
"request": "launch",
|
|
"name": "Debug App",
|
|
"url": "http://localhost:3000",
|
|
"webRoot": "${workspaceFolder}/ai_animation",
|
|
"sourceMapPathOverrides": {
|
|
"webpack:///./src/*": "${webRoot}/*"
|
|
},
|
|
"runtimeArgs": [
|
|
"--remote-debugging-port=9222"
|
|
],
|
|
"sourceMaps": true
|
|
}
|
|
]
|
|
}
|