62 lines
559 B
Plaintext
62 lines
559 B
Plaintext
# Source files
|
|
src/
|
|
*.ts
|
|
!*.d.ts
|
|
|
|
# Development files
|
|
.env
|
|
.env.*
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output
|
|
*.lcov
|
|
|
|
# Build tools
|
|
tsconfig.json
|
|
jest.config.js
|
|
.eslintrc.*
|
|
.prettierrc.*
|
|
|
|
# Development dependencies
|
|
node_modules/
|
|
.npm
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
Dockerfile
|
|
docker-compose.yml
|
|
deploy.sh
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Examples and docs (keep README.md)
|
|
examples/
|
|
docs/
|
|
*.md
|
|
!README.md
|
|
|
|
# Test files
|
|
test/
|
|
tests/
|
|
__tests__/
|
|
*.test.js
|
|
*.test.ts
|
|
*.spec.js
|
|
*.spec.ts
|