TypeFetched/.gitignore
Casey Collier b85b9a63e2 Initial commit: TypedFetch - Zero-dependency, type-safe HTTP client
Features:
- Zero configuration, just works out of the box
- Runtime type inference and validation
- Built-in caching with W-TinyLFU algorithm
- Automatic retries with exponential backoff
- Circuit breaker for resilience
- Request deduplication
- Offline support with queue
- OpenAPI schema discovery
- Full TypeScript support with type descriptors
- Modular architecture
- Configurable for advanced use cases

Built with bun, ready for npm publishing
2025-07-20 12:35:43 -04:00

62 lines
No EOL
616 B
Text

# Dependencies
node_modules/
# Build output
dist/
build/
*.js
*.d.ts
*.js.map
# Keep source files
!src/**/*.ts
# IDE & Editor files
.vscode/
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Environment & Config
.env
.env.local
.env.*.local
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# Testing
coverage/
.nyc_output/
# Private/Local files
CLAUDE.md
claude.md
.claude/
dx-brainstorming.md
dx-research.md
# Temporary files
*.tmp
*.temp
.cache/
# Package manager files
.npm
.yarn-integrity
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache