68 lines
614 B
Plaintext
68 lines
614 B
Plaintext
# Dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Build outputs
|
|
dist
|
|
.next
|
|
.turbo
|
|
out
|
|
|
|
# Development
|
|
.env
|
|
.env*.local
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Testing
|
|
coverage
|
|
.nyc_output
|
|
**/__tests__
|
|
**/*.test.ts
|
|
**/*.test.tsx
|
|
**/*.test.js
|
|
**/*.test.jsx
|
|
**/*.spec.ts
|
|
**/*.spec.tsx
|
|
**/*.spec.js
|
|
**/*.spec.jsx
|
|
test/
|
|
vitest.config.ts
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# CI/CD
|
|
.github
|
|
.gitlab-ci.yml
|
|
|
|
# Documentation (not needed in image)
|
|
*.md
|
|
!README.md
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
docker
|
|
!docker/nginx
|
|
.dockerignore
|
|
|
|
# Misc
|
|
.cursor
|
|
.eslintcache
|
|
.cache
|
|
tmp
|
|
temp
|