| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- # Dependencies (will be installed in container)
- node_modules
- # Build output (will be built in container)
- dist
- build
- # Development files
- *.dev
- Dockerfile.dev
- Dockerfile.optimized
- # Environment files (secrets - NEVER include)
- .env
- .env.*
- !.env.example
- # IDE and editor files
- .vscode
- .idea
- *.swp
- *.swo
- *~
- # OS files
- .DS_Store
- Thumbs.db
- # Git
- .git
- .gitignore
- .gitattributes
- # Testing
- coverage
- .nyc_output
- *.test.ts
- *.test.tsx
- *.spec.ts
- *.spec.tsx
- __tests__
- # Logs
- *.log
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- # Cache
- .cache
- .vite
- .eslintcache
- .parcel-cache
- *.md
- !README.md
- docs
- # CI/CD
- .github
- .gitlab-ci.yml
- .circleci
- # Misc
- *.bak
- *.tmp
- .husky
|