Last active
February 16, 2026 23:38
-
-
Save kevinacuna1/6c10e426a2f6f4acd800111b713bc9c8 to your computer and use it in GitHub Desktop.
Archivo .gitignore optimizado para proyectos web desarrollados en Visual Studio Code. Excluye dependencias (node_modules), carpetas de compilación (dist, www), configuraciones locales (.vscode, .env), y archivos temporales. Ideal para proyectos con JavaScript, Ionic, o frameworks frontend modernos.
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
| # ============================================================ | |
| # Node.js | |
| # ============================================================ | |
| node_modules/ | |
| npm-debug.log* | |
| yarn-debug.log* | |
| yarn-error.log* | |
| pnpm-debug.log* | |
| # Lock files (opcional) | |
| # package-lock.json | |
| # yarn.lock | |
| # pnpm-lock.yaml | |
| # ============================================================ | |
| # Build / Output | |
| # ============================================================ | |
| dist/ | |
| build/ | |
| www/ | |
| out/ | |
| tmp/ | |
| temp/ | |
| # ============================================================ | |
| # Ionic / Capacitor / Cordova | |
| # ============================================================ | |
| .platforms/ | |
| plugins/ | |
| android/ | |
| ios/ | |
| capacitor.config.json.backup | |
| # ============================================================ | |
| # Environment files | |
| # ============================================================ | |
| .env | |
| .env.local | |
| .env.*.local | |
| .env.development.local | |
| .env.production.local | |
| # ============================================================ | |
| # IDE / Editor | |
| # ============================================================ | |
| .vscode/ | |
| .idea/ | |
| *.sublime-workspace | |
| *.sublime-project | |
| # VS Code local history | |
| .history/ | |
| # ============================================================ | |
| # OS-specific | |
| # ============================================================ | |
| .DS_Store | |
| Thumbs.db | |
| # ============================================================ | |
| # Coverage | |
| # ============================================================ | |
| coverage/ | |
| .nyc_output/ | |
| # ============================================================ | |
| # Logs | |
| # ============================================================ | |
| logs/ | |
| *.log | |
| *.log.* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment