Skip to content

Instantly share code, notes, and snippets.

@tarusharora
Created December 30, 2018 11:36
Show Gist options
  • Save tarusharora/5e329e39bedb05414321f2ab265435cd to your computer and use it in GitHub Desktop.
Save tarusharora/5e329e39bedb05414321f2ab265435cd to your computer and use it in GitHub Desktop.
sampe VS Code debugging launch configuration
{
// 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": "Launch Program",
"program": "${workspaceFolder}/app.js",
"runtimeArgs": ["--nolazy"],
"env": {
"APP_SETTINGS_FILE_PATH": "${cwd}/config/appSettings.json"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment