mirror of
https://github.com/2930134478/AI-CS.git
synced 2026-06-15 00:44:30 +08:00
42 lines
346 B
Plaintext
42 lines
346 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# 环境变量
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
.env.development
|
|
|
|
# 构建产物
|
|
.next
|
|
dist
|
|
out
|
|
build
|
|
|
|
# 依赖
|
|
node_modules
|
|
|
|
# 日志
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
|
|
# 测试
|
|
coverage
|
|
.nyc_output
|
|
|
|
# 系统文件
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 其他
|
|
*.tsbuildinfo
|
|
.eslintcache |