blob: e70178dff0dbe55402b0dfe0a4a57f406525058f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach to Node",
"processId": "${command:PickProcess}"
},
{
"type": "chrome",
"request": "launch",
"name": "Google Chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceRoot}",
"sourceMapPathOverrides": {
"webpack:///*": "${webRoot}/*"
}
}
],
}
|