-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimspector.json
42 lines (42 loc) · 1020 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
40
41
42
{
"configurations": {
"Launch Program": {
"adapter": "vscode-node",
"configuration": {
"request": "launch",
"protocol": "auto",
"stopOnEntry": false,
"console": "integratedTerminal",
"program": "${cwd}/app.js",
"cwd": "${cwd}"
},
"breakpoints": {
"exception": {
"all": "N",
"uncaught": "Y"
}
}
},
"Mocha Current File": {
"adapter": "vscode-node",
"configuration": {
"request": "launch",
"protocol": "auto",
"stopOnEntry": false,
"console": "integratedTerminal",
"env": {
"NODE_OPTIONS": "--experimental-vm-modules --no-warnings"
},
"program": "${cwd}/node_modules/mocha/bin/_mocha",
"args": ["--timeout", "999999", "--colors", "--bail", "${file}"],
"cwd": "${cwd}"
},
"breakpoints": {
"exception": {
"all": "N",
"uncaught": "Y"
}
}
}
}
}