a11yist/.vscode/launch.json
david 363dfaa7d3
All checks were successful
/ Checkout (push) Successful in 1m18s
launch/debug config
2024-07-22 21:47:06 +02:00

27 lines
No EOL
641 B
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": "ruby_lsp",
"name": "Debug server",
"request": "attach",
"preLaunchTask": "dev"
},
{
"type": "ruby_lsp",
"name": "Debug script",
"request": "launch",
"program": "ruby ${file}"
},
{
"type": "ruby_lsp",
"name": "Debug test",
"request": "launch",
"program": "ruby -Itest ${relativeFile}"
},
]
}