Created
November 27, 2018 13:49
-
-
Save wesleygrimes/f247b203cb03aeb540d655da76e3a8f4 to your computer and use it in GitHub Desktop.
Recommended .vscode/launch.json for debugging angular applications
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
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Debug App", | |
| "type": "chrome", | |
| "request": "launch", | |
| "url": "http://localhost:4200", | |
| "sourceMaps": true, | |
| "webRoot": "${workspaceRoot}/src", | |
| "userDataDir": "${workspaceRoot}/.vscode/chrome", | |
| "sourceMapPathOverrides": { | |
| "webpack:///./~/*": "${workspaceRoot}/node_modules/*", | |
| "webpack:///./src/*": "${workspaceRoot}/src/*" | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment