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
| # 依赖
| **/node_modules
|
| # 版本控制
| .git
| .gitignore
|
| # 构建产物(避免循环拷贝)
| dist
| build
| out
| .next
| .nuxt
|
| # 日志和调试文件
| *.log
| npm-debug.log*
| yarn-error.log*
|
| # IDE / 编辑器
| .vscode
| .idea
| .DS_Store
| *.sw[po]
|
| # 测试与报告
| coverage/
| reports/
| test-results/
|
| # 临时文件
| tmp/
| temp/
| *.tmp
|
|