62 lines
No EOL
563 B
Text
62 lines
No EOL
563 B
Text
# Dépendances
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Production
|
|
/dist
|
|
/build
|
|
|
|
# Environnement local
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# Cache
|
|
.cache
|
|
.parcel-cache
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Docker
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# Documentation
|
|
README.md
|
|
*.md
|
|
|
|
# Tests
|
|
__tests__
|
|
*.test.js
|
|
*.test.ts
|
|
*.spec.js
|
|
*.spec.ts
|
|
coverage
|
|
|
|
# Autres
|
|
.eslintrc*
|
|
.prettierrc*
|
|
tsconfig.json
|
|
vite.config.ts |