Skip to content

Instantly share code, notes, and snippets.

@nikordaris
Last active June 20, 2017 11:29
Show Gist options
  • Save nikordaris/1195e996a7bdc65a639836f354f2c7e5 to your computer and use it in GitHub Desktop.
Save nikordaris/1195e996a7bdc65a639836f354f2c7e5 to your computer and use it in GitHub Desktop.
VS Code Debug Configuration
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome",
"url": "http://localhost:8080",
"webRoot": "${workspaceRoot}"
}
{
"name": "Jest",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/jest-cli/bin/jest.js",
"stopOnEntry": false,
"args": [
"--runInBand"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"sourceMaps": true,
"outFiles": []
}
VS Code Debugger Configuration for different environments
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment