55 lines
688 B
Plaintext
55 lines
688 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Production build
|
|
dist/
|
|
build/
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Environment — never commit secrets; template is committed
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Test / coverage
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Caches
|
|
.cache/
|
|
.vite/
|
|
.parcel-cache/
|
|
.eslintcache
|
|
*.cache
|
|
|
|
# IDE / editors (keep team-shared .vscode/*.json in repo if you add them with !)
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Optional local HTTPS / signing material (never commit real certs)
|
|
*.pem
|
|
*.p12
|
|
*.pfx
|
|
|
|
# Archives from npm pack / releases
|
|
*.tgz
|