aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: c3e0b94710a8d878203e328828e7f25200cb1703 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "chrome",
            "request": "launch",
            "name": "Client",
            "url": "http://localhost:3000",
            "webRoot": "${workspaceRoot}",
            "sourceMapPathOverrides": {
                "webpack:///*": "${webRoot}/*"
            }
        },
        {
            "type": "node",
            "request": "launch",
            "name": "Server",
            "program": "${workspaceRoot}/bin/www"
        }
    ],
    "compounds": [
        {
            "name": "Full-stack",
            "configurations": ["Server", "Client"]
        }
    ]
}