Skip to content

Instantly share code, notes, and snippets.

@pradeepkumargali
Created October 10, 2017 07:06
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 pradeepkumargali/0ae873b62c01312a41eea8ff7a2ec9a9 to your computer and use it in GitHub Desktop.
Save pradeepkumargali/0ae873b62c01312a41eea8ff7a2ec9a9 to your computer and use it in GitHub Desktop.
babel-node VS Code
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/src/server.js",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/babel-node",
"runtimeArgs": [
"tools/run",
"start"
],
"env": {
"NODE_ENV": "development"
},
"console": "internalConsole",
"sourceMaps": true,
"outFiles": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment