How to develop the project in VSCode

Hi,

Just tried this and got it to work with the following launch.json (with code from master):

{
  "version": "0.2.0",
  "configurations": [
    {
      "type": "chrome",
      "request": "launch",
      "name": "Debug in Chrome",
      "url": "http://grafana.staged-by-discourse.com",
      "webRoot": "${workspaceFolder}"
    }
  ]
}

Then launched it and put a breakpoint in panel_ctrl.ts that was successfully hit.

I’m on Ubuntu and using Chrome Version 63.0.3239.84 (Official Build) (64-bit).

Marcus