How to get extension to stop creating `.vscode`?

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?

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

2 Likes

Thank you, that worked!