40 lines
406 B
Plaintext
40 lines
406 B
Plaintext
# Dependencies - exclude node_modules from being copied
|
|
node_modules
|
|
**/node_modules
|
|
|
|
# Turbo
|
|
.turbo
|
|
**/.turbo
|
|
|
|
# Next.js build artifacts
|
|
.next
|
|
**/.next
|
|
**/out
|
|
|
|
# Development
|
|
.git
|
|
.gitignore
|
|
*.log
|
|
.env.local
|
|
.env*.local
|
|
.vscode
|
|
.idea
|
|
.cache
|
|
|
|
# Tests
|
|
**/__tests__
|
|
**/*.test.ts
|
|
**/*.test.tsx
|
|
**/*.spec.ts
|
|
|
|
# Build artifacts
|
|
**/dist
|
|
**/build
|
|
|
|
# Convex local
|
|
packages/backend/.convex
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|