* Initial plan * Add comprehensive web performance optimizations and monitoring Co-authored-by: PatrickFanella <61631520+PatrickFanella@users.noreply.github.com> * Add performance utilities, security headers, and budget tracking Co-authored-by: PatrickFanella <61631520+PatrickFanella@users.noreply.github.com> * Address code review feedback: improve type safety and accuracy Co-authored-by: PatrickFanella <61631520+PatrickFanella@users.noreply.github.com> * Add comprehensive performance optimization summary Co-authored-by: PatrickFanella <61631520+PatrickFanella@users.noreply.github.com> * Address PR review feedback: improve error handling and add documentation Co-authored-by: PatrickFanella <61631520+PatrickFanella@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: PatrickFanella <61631520+PatrickFanella@users.noreply.github.com>
90 lines
1.0 KiB
Plaintext
90 lines
1.0 KiB
Plaintext
# Node
|
|
node_modules/
|
|
.npm/
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
dist/
|
|
|
|
# Hardhat
|
|
cache/
|
|
artifacts/
|
|
typechain-types/
|
|
coverage/
|
|
gas-report.txt
|
|
gasReporterOutput.json
|
|
|
|
# NYC coverage
|
|
.nyc_output/
|
|
coverage/
|
|
|
|
# Turbo / Monorepo caches
|
|
.turbo/
|
|
|
|
# Env
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Local database files (SQLite)
|
|
**/*.db
|
|
**/*.db-journal
|
|
**/*.sqlite
|
|
**/*.sqlite-shm
|
|
**/*.sqlite-wal
|
|
|
|
# Prisma
|
|
.prisma/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
*.log
|
|
|
|
|
|
#Ignore insiders AI rules
|
|
.github/instructions/codacy.instructions.md
|
|
|
|
# Editors / IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Linting
|
|
.eslintcache
|
|
|
|
# Next.js (applies to any package path)
|
|
.next/
|
|
out/
|
|
.vercel/
|
|
|
|
# Performance reports
|
|
performance-report.json
|
|
.lighthouseci/
|
|
|
|
# Playwright E2E testing
|
|
test-results/
|
|
playwright-report/
|
|
playwright/.cache/
|
|
.playwright/
|
|
|
|
# Security scans
|
|
security-scans/
|
|
secret-scan-*.txt
|
|
security-summary.md
|
|
|
|
# Backup files (secrets)
|
|
backup-*.json
|
|
*.backup
|
|
vault-init.txt
|
|
|
|
# Secret management
|
|
.vault-token
|
|
secrets-*.json
|