a11yist/.vscode/launch.json

19 lines
485 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": [
2024-10-27 02:16:36 +02:00
// {
// "type": "rdbg",
// "request": "attach",
// "name": "Attach to a debuggee"
// },
2024-07-15 14:31:54 +02:00
{
2024-10-31 23:13:18 +01:00
"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
},
]
}