Skip to content

Instantly share code, notes, and snippets.

@OlivierAlbertini
Created January 15, 2017 21:05
Show Gist options
  • Save OlivierAlbertini/5b1a8acf79bedeb407e54143dfcddce4 to your computer and use it in GitHub Desktop.
Save OlivierAlbertini/5b1a8acf79bedeb407e54143dfcddce4 to your computer and use it in GitHub Desktop.
{
// Use IntelliSense to learn about possible Node.js debug 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": "${workspaceRoot}/app.ts",
"cwd": "${workspaceRoot}",
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV":"development"
},
"outFiles": ["${workspaceRoot}/js/**/*.js"],
"sourceMaps": true
},
{
"type": "node",
"request": "attach",
"name": "Attach to Process",
"port": 5858,
"outFiles": [],
"sourceMaps": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment