Created
April 12, 2019 18:34
-
-
Save jmprado/345991b22142960041ec006a2b613554 to your computer and use it in GitHub Desktop.
.gitignore for Visual Studio Code Cordova Projects on Window 10
This file contains 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
# remove extension less files | |
* | |
!/**/ | |
!*.* | |
# intermediate files | |
node_modules/** | |
build/ | |
obj/ | |
Debug/ | |
bin/ | |
typings/ | |
package-lock.json | |
.vs/** | |
.vscode/** | |
.gradle | |
.idea | |
*.exe | |
*.cmd | |
*.bat | |
*.bnf | |
*.npmignore | |
*.yml | |
# Cordova - platforms | |
platforms | |
# Cordova - plugins - remove all except json & xml | |
plugins/**/.DS_Store | |
plugins/**/*.cs | |
plugins/**/*.h | |
plugins/**/*.java | |
plugins/**/*.js | |
plugins/**/*.m | |
plugins/**/*.map | |
plugins/**/*.md | |
plugins/**/*.modulemap | |
plugins/**/*.ts | |
plugins/**/LICENSE | |
plugins/**/NOTICE | |
plugins/**/*.gradle | |
plugins/**/tests/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment