| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- # 依赖
- node_modules
- .pnp
- .pnp.js
- # 测试
- coverage
- *.test.ts
- *.test.tsx
- *.spec.ts
- *.spec.tsx
- # Next.js
- .next
- out
- build
- dist
- # 环境变量
- .env
- .env*.local
- # 日志
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- pnpm-debug.log*
- lerna-debug.log*
- # 编辑器
- .vscode
- .idea
- *.swp
- *.swo
- *~
- # 操作系统
- .DS_Store
- Thumbs.db
- # Git
- .git
- .gitignore
- # Docker
- Dockerfile
- .dockerignore
- # 其他
- README.md
- *.md
- .eslintcache
|