-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
66 lines (54 loc) · 1.11 KB
/
Copy path.gitignore
File metadata and controls
66 lines (54 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# ===== 依赖 =====
node_modules/
**/node_modules/
# ===== 日志与运行时数据 =====
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pids
*.pid
*.seed
*.pid.lock
# ===== 测试覆盖率 =====
coverage/
*.lcov
.nyc_output
# ===== 工具缓存 =====
.cache
.eslintcache
.node_repl_history
# ===== 环境变量(可能含密钥,绝不提交) =====
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# ===== 打包产物(npm pack 等) =====
*.tgz
# ===== IDE / 编辑器 =====
.vscode/
.idea/
*.swp
*.swo
*~
.cursor/
# ===== 操作系统生成文件 =====
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# ===== EasyOps 专属 =====
# 前端(Vite)构建产物与缓存 —— 注意:项目前端目录是 client/,不是 frontend/
client/dist/
client/.vite/
# 后端 esbuild 打包产物(build:server 生成,已内联 express/cors,非源码,必须忽略)
server/dist/
# 运行期生成的临时文件(PORT_FILE 现已写入系统临时目录 os.tmpdir(),此文件为历史残留)
# Electron 构建输出
dist-electron/
out/
release/