78969e4a41
* "Launch Chrome" does not work since login via google is not possible in debugger-chrome * Breakpoints are unbound when attached to chrome
23 lines
730 B
JSON
23 lines
730 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": [
|
|
{
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"name": "Launch Chrome against localhost",
|
|
"url": "http://localhost:3000",
|
|
"webRoot": "${workspaceRoot}"
|
|
},
|
|
{
|
|
"type": "chrome",
|
|
"request": "attach",
|
|
"name": "Attach to Chrome",
|
|
"port": 9222,
|
|
"urlFilter": "http://localhost:3000/*",
|
|
"webRoot": "${workspaceFolder}"
|
|
}
|
|
]
|
|
} |