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
| # 依赖目录
| node_modules/
| bower_components/
| .pnp/
| .pnp.js
| *.zip
|
| # 测试相关
| coverage/
| *.lcov
|
| # 生产构建
| dist/
| build/
| out/
| .next/
|
| # 开发工具
| .DS_Store
| *.swp
| *.swo
| *~
| .idea/
| .vscode/
| *.suo
| *.ntvs*
| *.njsproj
| *.sln
| *.sw?
|
| # 日志
| *.log
| npm-debug.log*
| yarn-debug.log*
| yarn-error.log*
|
| # 环境变量
| .env
| .env.local
| .env.development
| .env.test
| .env.production
|
| # 缓存
| .cache/
|
| # 系统文件
| Thumbs.db
| ehthumbs.db
| Desktop.ini
|
|