# Git .git .gitignore .gitattributes # Documentation README.md *.md # Node modules (will be installed during build) node_modules **/node_modules # Build outputs (will be generated during build) dist **/dist # Test files tests **/tests *.test.ts *.test.js # Development files .vscode .idea *.log *.lock # Environment files .env .env.local .env.*.local # Temporary files *.tmp *.temp tmp/ temp/ # OS files .DS_Store Thumbs.db