29 lines
749 B
JSON
29 lines
749 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch Edge",
|
|
"request": "launch",
|
|
"type": "pwa-msedge",
|
|
"url": "http://localhost:4200",
|
|
"webRoot": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"name": "Launch Chrome against localhost",
|
|
"url": "http://localhost:4200",
|
|
"sourceMaps": true,
|
|
"webRoot": "${workspaceRoot}"
|
|
},
|
|
{
|
|
"type": "chrome",
|
|
"request": "attach",
|
|
"name": "Attach to Chrome",
|
|
"port": 9222,
|
|
"sourceMaps": true,
|
|
"webRoot": "${workspaceRoot}"
|
|
}
|
|
]
|
|
}
|