Skip to content

Instantly share code, notes, and snippets.

@lemissel
Last active August 28, 2020 16:54
Show Gist options
  • Save lemissel/a8f8d72cfc7af4f54d4c3a99dd905309 to your computer and use it in GitHub Desktop.
Save lemissel/a8f8d72cfc7af4f54d4c3a99dd905309 to your computer and use it in GitHub Desktop.
launch.json configuration for Nestjs debbuging with VSCode
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/src/main.ts",
"preLaunchTask": "tsc: watch - tsconfig.build.json",
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
"skipFiles": [
"${workspaceFolder}/node_modules/**/*.js",
"<node_internals>/**/*.js"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment