70 lines
757 B
Plaintext
70 lines
757 B
Plaintext
# Node.js 相关
|
||
node_modules
|
||
npm-debug.log*
|
||
yarn-debug.log*
|
||
yarn-error.log*
|
||
|
||
# 源代码和开发文件(精简版不需要)
|
||
src
|
||
scripts
|
||
public
|
||
package*.json
|
||
vite.config.js
|
||
eslint.config.js
|
||
index.html
|
||
|
||
# 构建相关
|
||
dist
|
||
.vite
|
||
|
||
# 环境文件
|
||
.env*
|
||
|
||
# IDE/Editor files
|
||
.vscode
|
||
.idea
|
||
*.swp
|
||
*.swo
|
||
*~
|
||
|
||
# OS generated files
|
||
.DS_Store
|
||
.DS_Store?
|
||
._*
|
||
.Spotlight-V100
|
||
.Trashes
|
||
ehthumbs.db
|
||
Thumbs.db
|
||
|
||
# Git
|
||
.git
|
||
.gitignore
|
||
|
||
# Docker 相关(保留 Dockerfile)
|
||
docker-compose.yml
|
||
|
||
# 脚本文件(精简版不需要)
|
||
docker-entrypoint.sh
|
||
|
||
# 文档
|
||
README*.md
|
||
LICENSE
|
||
|
||
# 日志
|
||
logs
|
||
*.log
|
||
|
||
# Runtime data
|
||
pids
|
||
*.pid
|
||
*.seed
|
||
*.pid.lock
|
||
|
||
# Coverage directory used by tools like istanbul
|
||
coverage
|
||
|
||
# nyc test coverage
|
||
.nyc_output
|
||
|
||
# ESLint cache
|
||
.eslintcache |