Why is there a .vscode in the project file

clipboard.png
some projects have .vscode, and some projects don"t. Why?

Mar.11,2022

.vscode saves the (workspace) configuration of your workspace, such as task configuration and debug configuration. There is a launch.json, in your .vscode folder. This is the configuration of debug, indicating that you have started debugger. You can commit to git if you want to share these configurations.
specific reference: https://code.visualstudio.com.

Menu