Created
May 28, 2018 07:27
-
-
Save Theasker/8c3d8d33f06cba28a7701e8b93ed738d to your computer and use it in GitHub Desktop.
Configuratión file example for debug in Visual Studio Code
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
| { | |
| // Utilizar IntelliSense para aprender acerca de los posibles atributos. | |
| // Mantenga el puntero para ver las descripciones de los existentes atributos | |
| // Para más información, visite: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Launch Chrome", | |
| "type": "chrome", | |
| "request": "launch", | |
| "url": "http://localhost:4200/#", | |
| "webRoot": "${workspaceRoot}" | |
| }, | |
| { | |
| "name": "Attach Chrome", | |
| "type": "chrome", | |
| "request": "attach", | |
| "url": "http://localhost:4200/#", | |
| "webRoot": "${workspaceRoot}" | |
| }, | |
| { | |
| "name": "Launch Chrome (Test)", | |
| "type": "chrome", | |
| "request": "launch", | |
| "url": "http://localhost:9876/debug.html", | |
| "webRoot": "${workspaceRoot}" | |
| }, | |
| { | |
| "name": "Launch Chrome (E2E)", | |
| "type": "node", | |
| "request": "launch", | |
| "program": "${workspaceRoot}/node_modules/protractor/bin/protractor", | |
| "protocol": "inspector", | |
| "args": ["${workspaceRoot}/protractor.conf.js"] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment