58 lines
732 B
Plaintext
58 lines
732 B
Plaintext
# Dependencies and package-manager caches
|
|
/node_modules/
|
|
/.npm-cache/
|
|
/.pnp
|
|
.pnp.*
|
|
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
!.yarn/versions
|
|
|
|
# Build, framework and test output
|
|
/.next/
|
|
/.vinext/
|
|
/dist/
|
|
/out/
|
|
/coverage/
|
|
/outputs/
|
|
/work/
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# Cloudflare and deployment state
|
|
/.wrangler/
|
|
/.vercel/
|
|
|
|
# Environment files and local secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!.env.*.example
|
|
*.pem
|
|
|
|
# Runtime and debug logs
|
|
*.log
|
|
*.log.*
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Editors and operating systems
|
|
/.idea/
|
|
/.vscode/*
|
|
!/.vscode/extensions.json
|
|
!/.vscode/settings.json
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Temporary local artifacts
|
|
*.starter
|
|
*.pre-tsbuild
|
|
*.tmp
|
|
*.temp
|
|
*.swp
|
|
*~
|