Skip to content

Commit de89ec9

Browse files
authored
NFC: add .vscode/launch.json (#700)
* NFC: add `.vscode/launch.json` The workspace wide configuration should be portable, and allows us to add any recommended flags, which is convenient for getting started. * Add trailing newline, remove `tasks.json`
1 parent 2eb1f05 commit de89ec9

File tree

2 files changed

+22
-81
lines changed

2 files changed

+22
-81
lines changed

.vscode/launch.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"configurations": [
3+
{
4+
"type": "lldb",
5+
"request": "launch",
6+
"name": "Debug sourcekit-lsp",
7+
"program": "${workspaceFolder:sourcekit-lsp}/.build/debug/sourcekit-lsp",
8+
"args": [],
9+
"cwd": "${workspaceFolder:sourcekit-lsp}",
10+
"preLaunchTask": "swift: Build Debug sourcekit-lsp"
11+
},
12+
{
13+
"type": "lldb",
14+
"request": "launch",
15+
"name": "Release sourcekit-lsp",
16+
"program": "${workspaceFolder:sourcekit-lsp}/.build/release/sourcekit-lsp",
17+
"args": [],
18+
"cwd": "${workspaceFolder:sourcekit-lsp}",
19+
"preLaunchTask": "swift: Build Release sourcekit-lsp"
20+
}
21+
]
22+
}

.vscode/tasks.json

Lines changed: 0 additions & 81 deletions
This file was deleted.

0 commit comments

Comments
 (0)