49 lines
503 B
Plaintext
49 lines
503 B
Plaintext
# Node modules (installed in container)
|
|
node_modules/
|
|
|
|
# Build output (generated in container)
|
|
dist/
|
|
|
|
# Tests
|
|
**/*.test.ts
|
|
**/*.test.tsx
|
|
**/*.spec.ts
|
|
**/*.spec.tsx
|
|
test/
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Development files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# Documentation
|
|
*.md
|
|
|
|
# Playwright
|
|
playwright-report/
|
|
test-results/
|
|
playwright/.cache/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|