Skip to content

Instantly share code, notes, and snippets.

@GavukaAlexandr
Created December 8, 2017 00:42
Show Gist options
  • Save GavukaAlexandr/b295c6216f46eb20ae71cefb98b6d7f1 to your computer and use it in GitHub Desktop.
Save GavukaAlexandr/b295c6216f46eb20ae71cefb98b6d7f1 to your computer and use it in GitHub Desktop.
VS Code debug config for NodeJs with Babel
// can be used with
// https://github.com/MakingSense/mern-seed
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch via Babel",
"program": "${workspaceRoot}/api/server.js",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/babel-node",
"cwd": "${workspaceRoot}"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment