Skip to content

Instantly share code, notes, and snippets.

@sandroqz
Last active November 3, 2017 08:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sandroqz/e3a1782663b593a0a8084f9132fc809d to your computer and use it in GitHub Desktop.
Save sandroqz/e3a1782663b593a0a8084f9132fc809d to your computer and use it in GitHub Desktop.
VS code configuration file to debug a Meteor app
{
// 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": "chrome",
"request": "launch",
"name": "Launch Chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceRoot}"
},
{
"type": "node",
"request": "attach",
"name": "Attach to meteor",
"port": 5959,
"restart": true,
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/.meteor/**/*.js"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment