pbc-gui/.vscode/launch.json
2022-02-12 03:54:17 +01:00

21 lines
593 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "chromium: tabber",
"url": "http://localhost:9000",
"webRoot": "${workspaceFolder}/src",
"breakOnLoad": true,
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
},
"runtimeArgs": [
"--auto-open-devtools-for-tabs"
],
"preLaunchTask": "serve",
"postDebugTask": "terminate all tasks"
}
]
}