mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:21:10 +02:00
37 lines
464 B
Text
37 lines
464 B
Text
# TypeScript build cache - must be excluded to prevent incremental build issues
|
|
**/*.tsbuildinfo
|
|
|
|
# Dependencies
|
|
**/node_modules
|
|
**/.pnpm-store
|
|
|
|
# Build outputs are excluded to force fresh builds
|
|
**/dist
|
|
|
|
# Development files
|
|
**/.env
|
|
**/.env.local
|
|
**/.env.*.local
|
|
|
|
# IDE
|
|
**/.idea
|
|
**/.vscode
|
|
**/*.swp
|
|
**/*.swo
|
|
|
|
# OS files
|
|
**/.DS_Store
|
|
**/Thumbs.db
|
|
|
|
# Logs
|
|
**/*.log
|
|
**/npm-debug.log*
|
|
**/pnpm-debug.log*
|
|
|
|
# Test files
|
|
**/coverage
|
|
**/.nyc_output
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|