Skip to content

Instantly share code, notes, and snippets.

@Alexisvt
Created March 7, 2019 16:11
Show Gist options
  • Save Alexisvt/6a591e7ebcefd9b89a9ff65d7b7b8ffa to your computer and use it in GitHub Desktop.
Save Alexisvt/6a591e7ebcefd9b89a9ff65d7b7b8ffa to your computer and use it in GitHub Desktop.
Launch file for make Angular project easy to debug in VSCode
{
// 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 NG App",
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}",
"port": 4040
},
{
"type": "chrome",
"request": "attach",
"name": "Attach to NG App",
"port": 9222,
"webRoot": "${workspaceFolder}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment