Skip to content

Instantly share code, notes, and snippets.

@ankjevel
Created August 18, 2016 07:38
Show Gist options
  • Save ankjevel/e0996db48fcb1974c7b727eac3a5f356 to your computer and use it in GitHub Desktop.
Save ankjevel/e0996db48fcb1974c7b727eac3a5f356 to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Debug",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/lib/index.js",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"externalConsole": false,
"sourceMaps": false,
"outDir": null
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858,
"address": "localhost",
"restart": false,
"sourceMaps": false,
"outDir": null,
"localRoot": "${workspaceRoot}",
"remoteRoot": null
}
]
}
@ankjevel
Copy link
Author

add to .vscode/ folder in project root

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment