aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: 8bd51ee6d4add916f340781aa8366df6ff0e9fc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "Chrome",
      "type": "chrome",
      "request": "launch",
      "url": "http://localhost:3000",
      "webRoot": "${workspaceFolder}/src",
      "sourceMapPathOverrides": {
        "webpack:///src/*": "${webRoot}/*"
      }
    }
  ]
}