Skip to content

Instantly share code, notes, and snippets.

@sandalsoft
Created April 6, 2018 04:03
Show Gist options
  • Select an option

  • Save sandalsoft/3d294d36e8959d2974a452d055d5222d to your computer and use it in GitHub Desktop.

Select an option

Save sandalsoft/3d294d36e8959d2974a452d055d5222d to your computer and use it in GitHub Desktop.
{
// 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}/dist/index.js",
"cwd": "${workspaceRoot}",
"preLaunchTask": "npm: build",
"runtimeArgs": ["--nolazy"],
"env": {
"NODE_ENV": "development"
},
"console": "internalConsole",
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/dist/**"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment