- Add Makefile targets: install, type-check, lint, build-local - Add type-check script to backend/package.json - Create backend/.gitignore for build artifacts Enables quick TypeScript error detection without Docker rebuilds. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
23 lines
191 B
Plaintext
23 lines
191 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
dist/
|
|
|
|
# Test coverage
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Environment
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Editor
|
|
.DS_Store
|
|
*.swp
|
|
*.swo
|