a11yist/.vscode/launch.json

27 lines
641 B
JSON
Raw Normal View History

2024-07-15 14:31:54 +02:00
{
// 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",
2024-07-22 21:47:06 +02:00
"name": "Debug server",
"request": "attach",
"preLaunchTask": "dev"
2024-07-15 14:31:54 +02:00
},
{
"type": "ruby_lsp",
"name": "Debug script",
"request": "launch",
"program": "ruby ${file}"
},
{
"type": "ruby_lsp",
"name": "Debug test",
"request": "launch",
"program": "ruby -Itest ${relativeFile}"
},
]
}