From e90aeb62e54954c0608480f573bd093c951a94a7 Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Mon, 24 Feb 2025 09:09:00 +0100 Subject: [PATCH] Add launch config for debugging the schema generation --- .vscode/launch.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index be436b55f..3bedda766 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -26,6 +26,15 @@ ], "console": "integratedTerminal", }, + { + "name": "JSON Schema generator", + "type": "go", + "request": "launch", + "mode": "auto", + "program": "${workspaceFolder}/pkg/jsonschema/generator.go", + "cwd": "${workspaceFolder}/pkg/jsonschema", + "console": "integratedTerminal", + }, { "name": "Attach to a running Lazygit", "type": "go",