48 lines
496 B
Plaintext
48 lines
496 B
Plaintext
# Node modules
|
|
node_modules/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.*.local
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Debug
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS & Editor settings
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
tmp/
|
|
temp/
|
|
|
|
# Database files (if local DB is used)
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Coverage / testing
|
|
coverage/
|
|
.nyc_output/
|
|
jest-*
|
|
|
|
# Misc
|
|
*.local
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|