Skip to content

Commit eeab94c

Browse files
authored
chore: create launch.json for vscode (#154)
1 parent f61383c commit eeab94c

File tree

1 file changed

+102
-0
lines changed

1 file changed

+102
-0
lines changed

.vscode/launch.json

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "lldb",
9+
"request": "launch",
10+
"name": "Debug unit tests in library 'deno_task_shell'",
11+
"cargo": {
12+
"args": [
13+
"test",
14+
"--no-run",
15+
"--lib",
16+
"--package=deno_task_shell"
17+
],
18+
"filter": {
19+
"name": "deno_task_shell",
20+
"kind": "lib"
21+
}
22+
},
23+
"args": [],
24+
"cwd": "${workspaceFolder}"
25+
},
26+
{
27+
"type": "lldb",
28+
"request": "launch",
29+
"name": "Debug unit tests in library 'shell'",
30+
"cargo": {
31+
"args": [
32+
"test",
33+
"--no-run",
34+
"--lib",
35+
"--package=shell"
36+
],
37+
"filter": {
38+
"name": "shell",
39+
"kind": "lib"
40+
}
41+
},
42+
"args": [],
43+
"cwd": "${workspaceFolder}"
44+
},
45+
{
46+
"type": "lldb",
47+
"request": "launch",
48+
"name": "Debug executable 'shell'",
49+
"cargo": {
50+
"args": [
51+
"build",
52+
"--bin=shell",
53+
"--package=shell"
54+
],
55+
"filter": {
56+
"name": "shell",
57+
"kind": "bin"
58+
}
59+
},
60+
"args": [],
61+
"cwd": "${workspaceFolder}"
62+
},
63+
{
64+
"type": "lldb",
65+
"request": "launch",
66+
"name": "Debug unit tests in executable 'shell'",
67+
"cargo": {
68+
"args": [
69+
"test",
70+
"--no-run",
71+
"--bin=shell",
72+
"--package=shell"
73+
],
74+
"filter": {
75+
"name": "shell",
76+
"kind": "bin"
77+
}
78+
},
79+
"args": [],
80+
"cwd": "${workspaceFolder}"
81+
},
82+
{
83+
"type": "lldb",
84+
"request": "launch",
85+
"name": "Debug unit tests in library 'tests'",
86+
"cargo": {
87+
"args": [
88+
"test",
89+
"--no-run",
90+
"--lib",
91+
"--package=tests"
92+
],
93+
"filter": {
94+
"name": "tests",
95+
"kind": "lib"
96+
}
97+
},
98+
"args": [],
99+
"cwd": "${workspaceFolder}"
100+
}
101+
]
102+
}

0 commit comments

Comments
 (0)