Files
nx_post_support/.vscode/launch.json
T
2025-09-07 07:18:18 +02:00

29 lines
1.0 KiB
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "extensionHost",
"request": "launch",
"name": "Run TCL LSP",
"runtimeExecutable": "${execPath}/",
"args": ["--extensionDevelopmentPath=${workspaceFolder}/", "${workspaceFolder}/test/"],
"outFiles": ["${workspaceFolder}/client/out/**/*.js"],
"autoAttachChildProcesses": true,
"preLaunchTask": "npm: build"
},
{
"name": "Debug Rust LSP Server (debug)",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/server/target/debug/server.exe",
"args": [],
"env": { "RUST_BACKTRACE": "1" },
"preLaunchTask": "cargo: build server",
"stopOnEntry": true
}
]
}