How to get extension to stop creating .vscode? (original) (raw)

December 15, 2024, 12:17am 1

Every time I open my project, the Swift VS Code extension creates a broken .vscode/launch.json. I don't even bother to fix it, since I run the project with the terminal anyways, I just delete it every time. Is there a way to get the extension to stop creating this?

plemarquand (Paul LeMarquand) December 15, 2024, 11:32pm 2

Setting swift.autoGenerateLaunchConfigurations to false in the extension settings will stop this behaviour.

bbrk24 December 16, 2024, 1:32am 3

Thank you, that worked!