Created
March 7, 2019 16:11
-
-
Save Alexisvt/6a591e7ebcefd9b89a9ff65d7b7b8ffa to your computer and use it in GitHub Desktop.
Launch file for make Angular project easy to debug in VSCode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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