Skip to content

Instantly share code, notes, and snippets.

@owalacesilva
Created February 3, 2024 18:01
Show Gist options
  • Save owalacesilva/2c9a1276f3bc86449e930e73ce5f2cc6 to your computer and use it in GitHub Desktop.
Save owalacesilva/2c9a1276f3bc86449e930e73ce5f2cc6 to your computer and use it in GitHub Desktop.
Vscode Lauch Nest.js
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug Goflux Product Order",
"runtimeExecutable": "npm",
"envFile": "${workspaceFolder}/.env.development.local",
"runtimeArgs": [
"run",
"start:debug",
"--",
"--inspect-brk"
],
"autoAttachChildProcesses": true,
"restart": true,
"sourceMaps": true,
"stopOnEntry": false,
"console": "integratedTerminal",
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment