Skip to content

Instantly share code, notes, and snippets.

@elgervb
Last active January 8, 2019 07:33
Show Gist options
  • Save elgervb/f62407ce648e30d5659c420d25319073 to your computer and use it in GitHub Desktop.
Save elgervb/f62407ce648e30d5659c420d25319073 to your computer and use it in GitHub Desktop.
VSCode launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Chrome",
"type": "chrome",
"request": "launch",
"url": "http://localhost:4200/",
"runtimeArgs": [
"--user-data-dir=c:\\temp\\ngx-components",
"--remote-debugging-port=9222"
],
"sourceMaps": true,
"webRoot": "${workspaceRoot}"
},
{
"name": "Attach to Chrome",
"type": "chrome",
"request": "attach",
"url": "http://localhost:4200/*",
"port": 9222,
"sourceMaps": true,
"webRoot": "${workspaceRoot}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment