mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-02 23:58:49 +01:00
22 lines
516 B
JSON
22 lines
516 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch Chrome against localhost, with sourcemaps",
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"url": "http://localhost:3000",
|
|
"sourceMaps": true,
|
|
"webRoot": "${workspaceRoot}"
|
|
},
|
|
{
|
|
"name": "Attach to Chrome, with sourcemaps",
|
|
"type": "chrome",
|
|
"request": "attach",
|
|
"url": "http://localhost:3000",
|
|
"port": 9222,
|
|
"sourceMaps": true,
|
|
"webRoot": "${workspaceRoot}"
|
|
}
|
|
]
|
|
}
|