Skip to content

Instantly share code, notes, and snippets.

@sandalsoft
Last active June 26, 2019 02:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sandalsoft/b2a9ea70e4a216f665bfb5c4c30efaf7 to your computer and use it in GitHub Desktop.
Save sandalsoft/b2a9ea70e4a216f665bfb5c4c30efaf7 to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/dist/client.js",
"cwd": "${workspaceRoot}",
"preLaunchTask": "npm: build",
"runtimeArgs": ["--nolazy"],
"env": {
"NODE_ENV": "development"
},
"envFile": "${workspaceRoot}/.env",
"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