12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- # Dependencies
- node_modules/
- # Build output
- dist/
- build/
- # Test coverage
- coverage/
- # Jest cache
- .jest-cache/
- # Environment variables
- .env
- .env.local
- .env.development.local
- .env.test.local
- .env.production.local
- # IDE
- .vscode/
- .idea/
- # OS generated files
- .DS_Store
- .DS_Store?
- ._*
- .Spotlight-V100
- .Trashes
- ehthumbs.db
- Thumbs.db
- # Logs
- logs
- *.log
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- # Runtime data
- pids
- *.pid
- *.seed
- *.pid.lock
- # Optional npm cache directory
- .npm
- # Optional REPL history
- .node_repl_history
- # Output of 'npm pack'
- *.tgz
- # Yarn Integrity file
- .yarn-integrity
- # Test files
- test_*.ts
- test_*.js
|