[libc][test] Adjust header paths in tests (#119623)
[llvm-project.git] / lldb / tools / lldb-dap / .vscode / launch.json
blob8241a5aca035434c3e71addf01aa2a44feb11537
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": "extensionHost",
9                         "request": "launch",
10                         "name": "Run Extension",
11                         "runtimeExecutable": "${execPath}",
12                         "args": [
13                                 "--extensionDevelopmentPath=${workspaceFolder}"
14                         ],
15                         "outFiles": [
16                                 "${workspaceFolder}/out/**/*.js"
17                         ],
18                         "preLaunchTask": {
19                                 "type": "npm",
20                                 "script": "watch"
21                         }
22                 }
23         ]