Skip to content

Instantly share code, notes, and snippets.

@jrock2004
Last active August 4, 2016 18:08
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 jrock2004/32f0353e176294060ed1d4fa9f56d646 to your computer and use it in GitHub Desktop.
Save jrock2004/32f0353e176294060ed1d4fa9f56d646 to your computer and use it in GitHub Desktop.
If you want to debug ember apps in Visual Studio Code. File should be place in your projectroot/.vscode/launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch local",
"type": "chrome",
"request": "launch",
"runtimeExecutable": "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome",
"runtimeArgs": [ "--remote-debugging-port=9222" ],
"url": "http://localhost:8081/dev.html#/location/cafe",
"webRoot": "${workspaceRoot}",
"port": 9222,
"diagnosticLogging": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment