"Fossies" - the Fresh Open Source Software Archive 
Member "cli-1.1260.0/.vscode/launch.json" (4 Dec 2023, 1004 Bytes) of package /linux/misc/snyk-cli-1.1260.0.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) JSON source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 {
2 "version": "0.2.0",
3 "configurations": [
4 {
5 "type": "node",
6 "request": "launch",
7 "name": "Tap Current File",
8 "console": "integratedTerminal",
9 "program": "${workspaceFolder}/node_modules/.bin/tap",
10 "args": [
11 "${relativeFile}",
12 "-Rspec",
13 "--timeout=300",
14 "--node-arg=-r",
15 "--node-arg=ts-node/register"
16 ]
17 },
18 {
19 "type": "node",
20 "request": "launch",
21 "name": "Jest Current File",
22 "console": "integratedTerminal",
23 "program": "${workspaceFolder}/node_modules/.bin/jest",
24 "args": ["${relativeFile}"]
25 },
26 {
27 "type": "node",
28 "request": "launch",
29 "name": "Debug Jest Current File",
30 "console": "integratedTerminal",
31 "program": "${workspaceFolder}/node_modules/.bin/jest",
32 "args": ["${relativeFile}"],
33 "runtimeArgs": [
34 "--inspect-brk",
35 "${workspaceRoot}/node_modules/.bin/jest",
36 "--runInBand"
37 ]
38 }
39 ]
40 }