Skip to content

Instantly share code, notes, and snippets.

@Theasker
Created May 28, 2018 07:27
Show Gist options
  • Select an option

  • Save Theasker/8c3d8d33f06cba28a7701e8b93ed738d to your computer and use it in GitHub Desktop.

Select an option

Save Theasker/8c3d8d33f06cba28a7701e8b93ed738d to your computer and use it in GitHub Desktop.
Configuratión file example for debug in Visual Studio Code
{
// 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