ds4/.vscode/launch.json

19 lines
602 B
JSON
Raw Normal View History

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
2023-09-16 10:54:51 +02:00
"type": "chrome",
"request": "launch",
"runtimeExecutable": "/usr/bin/chromium",
"name": "Launch Chrome against localhost",
"url": "http://localhost:30000/game",
2023-09-16 10:54:51 +02:00
"pathMapping": {
"/systems/ds4": "${workspaceFolder}/dist"
}
}
]
}