-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy path.vimspector.json
39 lines (39 loc) · 894 Bytes
/
.vimspector.json
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
28
29
30
31
32
33
34
35
36
37
38
39
{
"configurations": {
"chrome": {
"adapter": "chrome",
"configuration": {
"request": "launch",
"url": "http://localhost:1234/",
"webRoot": "${workspaceRoot}/www"
}
},
"firefox": {
"adapter": "firefox",
"configuration": {
"request": "launch",
"url": "http://localhost:1234/",
"webRoot": "${workspaceRoot}/www",
"reAttach": true
}
},
"firefox-attach": {
"adapter": "firefox",
"configuration": {
"request": "attach",
"port": "${DebugPort}",
"webRoot": "${workspaceRoot}/www",
"reAttach": true
}
},
"jsdebug-attach": {
"adapter": "js-debug",
"configuration": {
"request": "attach",
"port": "${DebugPort}",
"type": "pwa-chrome",
"webRoot": "${workspaceRoot}/www"
}
}
}
}