1
0
Fork 0
spacetac/.vscode/launch.json

19 lines
500 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Run game in Chrome",
"type": "chrome",
"request": "launch",
"url": "http://localhost:8012",
"webRoot": "${workspaceRoot}/out"
},
{
"name": "Run tests in Chrome",
"type": "chrome",
"request": "launch",
"url": "http://localhost:8012/tests.html",
"webRoot": "${workspaceRoot}/out"
}
]
}