Skip to content

Instantly share code, notes, and snippets.

@intelguasoft
Last active March 1, 2020 03:16
Show Gist options
  • Save intelguasoft/abcdbf9846a8314f4984222ac4b5d120 to your computer and use it in GitHub Desktop.
Save intelguasoft/abcdbf9846a8314f4984222ac4b5d120 to your computer and use it in GitHub Desktop.
Configuración de depuración en Visual Studio Code para Node.js.
{
// 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": "node",
"request": "launch",
"name": "Debug ecommerce",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"port": 9229,
"internalConsoleOptions": "openOnSessionStart"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment