blob: 995ecf7423eac5a9524023248cf8b6c2bc3cda10 (
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}/src/server/bin/www"
}
],
"compounds": [
{
"name": "Full-stack",
"configurations": ["Server", "Client"]
}
]
}
|