Last active
June 20, 2025 03:32
-
-
Save dzuluaga/afccd286d766014c89757af488d33e4a to your computer and use it in GitHub Desktop.
Added .vscode/settings.json to improve editor performance by excluding build folders; please restart your editor after pulling to apply the changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/Thumbs.db": true, | |
"**/.gradle": true, | |
"**/.idea": true, | |
"**/bin": true, | |
"**/build": true, | |
"**/*.jar": true, | |
"**/*.a": true, | |
"**/*.so": true, | |
"**/Pods": true, | |
"**/*.podspec": true, | |
"**/*.xcworkspace": true, | |
"**/*.xcodeproj": true | |
}, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/*.code-search": true, | |
"**/.gradle": true, | |
"**/bin": true, | |
"**/build": true, | |
"**/*.jar": true, | |
"**/*.a": true, | |
"**/*.so": true, | |
"**/Pods": true, | |
"**/*.podspec": true, | |
"**/*.xcworkspace": true, | |
"**/*.xcodeproj": true | |
}, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/*/**": true, | |
"**/.hg/store/**": true, | |
"**/.gradle/**": true, | |
"**/bin/**": true, | |
"**/build/**": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment