webui/.vscode/launch.json

31 lines
937 B
JSON

{
// 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": [
{
"name": "Debug React App",
"type": "pwa-chrome",
"request": "launch",
"webRoot": "${workspaceFolder}/src",
"runtimeExecutable": "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",
"runtimeArgs": [
"--remote-debugging-port=9222",
"--user-data-dir=C:\\ChromeDebug",
"http://localhost:3001",
"http://localhost:3001/swagger"
],
"preLaunchTask": "Start All",
"postDebugTask": "Stop All Tasks"
},
{
"name": "Attach to Chrome",
"type": "pwa-chrome",
"request": "attach",
"port": 9222,
"webRoot": "${workspaceFolder}/src"
}
]
}