Skip to content

Instantly share code, notes, and snippets.

@dmikey
Created March 31, 2016 05:07
Show Gist options
  • Save dmikey/eb9bead76afa0c2391b614dcd05b97b2 to your computer and use it in GitHub Desktop.
Save dmikey/eb9bead76afa0c2391b614dcd05b97b2 to your computer and use it in GitHub Desktop.
example of vscode launch
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/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
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment