Debug & Run Angular2 Typescript with Visual Studio Code?
I am trying to debug Angular2 typescript application with VS code https://angular.io/gu
These mods to launch.json
worked for me on MacOS, which enabled me to get the debugger & breakpoints working in a new instance of Chrome per debug session...
// This forces chrome to run a brand new instance, allowing existing
// chrome windows to stay open.
"userDataDir": "${workspaceRoot}/.vscode/chrome",
"webRoot": "${workspaceRoot}",
"sourceMaps": true,
"sourceMapPathOverrides": { "webpack:///./*": "${webRoot}/*" }