setup
This commit is contained in:
56
.gitignore
vendored
56
.gitignore
vendored
@@ -1,5 +1,53 @@
|
|||||||
node_modules
|
# Node modules
|
||||||
# Keep environment variables out of version control
|
node_modules/
|
||||||
|
|
||||||
|
# Output builds
|
||||||
|
dist
|
||||||
|
dist/
|
||||||
|
.build/
|
||||||
|
coverage/
|
||||||
|
|
||||||
|
# TypeScript
|
||||||
|
*.tsbuildinfo
|
||||||
|
|
||||||
|
# Environment variables
|
||||||
.env
|
.env
|
||||||
|
.env.* # for multiple environments like .env.dev, .env.prod
|
||||||
/generated/prisma
|
|
||||||
|
# Logs
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
|
logs/
|
||||||
|
|
||||||
|
# IDE-specific
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# OS-specific
|
||||||
|
*.swp
|
||||||
|
*~
|
||||||
|
|
||||||
|
# Prisma
|
||||||
|
prisma/dev.db
|
||||||
|
prisma/migrations/dev/
|
||||||
|
prisma/*.sqlite
|
||||||
|
*.db
|
||||||
|
|
||||||
|
# Test output
|
||||||
|
*.lcov
|
||||||
|
*.lcov.info
|
||||||
|
nyc_output/
|
||||||
|
test-results/
|
||||||
|
|
||||||
|
# Package manager files (if using lockfile switching)
|
||||||
|
package-lock.json
|
||||||
|
yarn.lock
|
||||||
|
pnpm-lock.yaml
|
||||||
|
|
||||||
|
# Others (optional)
|
||||||
|
coverage-final.json
|
||||||
|
.cache/
|
||||||
Reference in New Issue
Block a user