106 lines
1.9 KiB
Plaintext
106 lines
1.9 KiB
Plaintext
# ==========================================
|
|
# Dependencias
|
|
# ==========================================
|
|
node_modules/
|
|
**/node_modules/
|
|
|
|
# ==========================================
|
|
# Variables de entorno y credenciales
|
|
# ==========================================
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
|
|
# ==========================================
|
|
# Archivos locales de Codex
|
|
# ==========================================
|
|
.codex/
|
|
AGENTS.md
|
|
**/AGENTS.md
|
|
|
|
# ==========================================
|
|
# Compilación y archivos generados
|
|
# ==========================================
|
|
dist/
|
|
**/dist/
|
|
tmp/
|
|
**/tmp/
|
|
out-tsc/
|
|
bazel-out/
|
|
build/
|
|
**/build/
|
|
|
|
# Resultados generados por Graphify
|
|
graphify-out/
|
|
**/graphify-out/
|
|
|
|
# ==========================================
|
|
# Angular
|
|
# ==========================================
|
|
.angular/cache/
|
|
**/.angular/cache/
|
|
|
|
# ==========================================
|
|
# Pruebas y cobertura
|
|
# ==========================================
|
|
coverage/
|
|
**/coverage/
|
|
.nyc_output/
|
|
__screenshots__/
|
|
test-results/
|
|
playwright-report/
|
|
|
|
# ==========================================
|
|
# Logs
|
|
# ==========================================
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
logs/
|
|
|
|
# ==========================================
|
|
# Visual Studio Code
|
|
# ==========================================
|
|
.vscode/*
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/extensions.json
|
|
.history/
|
|
|
|
# ==========================================
|
|
# Otros IDE
|
|
# ==========================================
|
|
.idea/
|
|
.project
|
|
.classpath
|
|
.c9/
|
|
*.launch
|
|
.settings/
|
|
*.sublime-workspace
|
|
|
|
# ==========================================
|
|
# Archivos temporales
|
|
# ==========================================
|
|
*.tmp
|
|
*.temp
|
|
*.cache
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.sass-cache/
|
|
connect.lock
|
|
libpeerconnection.log
|
|
testem.log
|
|
typings/
|
|
|
|
# ==========================================
|
|
# Archivos del sistema operativo
|
|
# ==========================================
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini |