-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vscodeignore
More file actions
114 lines (95 loc) · 1.91 KB
/
.vscodeignore
File metadata and controls
114 lines (95 loc) · 1.91 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# 源码文件 (因为只需要编译后的out目录)
src/**
tsconfig.json
# 测试相关
test/**
jest.config.js
coverage/**
# 开发依赖 (保留运行时依赖)
node_modules/@types/**
node_modules/jest/**
node_modules/ts-jest/**
node_modules/typescript/**
node_modules/.bin/**
node_modules/.cache/**
package-lock.json
yarn.lock
# 优化:排除不必要的运行时依赖子文件
node_modules/**/test/**
node_modules/**/tests/**
node_modules/**/spec/**
node_modules/**/*.test.js
node_modules/**/*.spec.js
node_modules/**/README.md
node_modules/**/CHANGELOG.md
node_modules/**/LICENSE*
node_modules/**/.github/**
node_modules/**/docs/**
node_modules/**/examples/**
node_modules/**/benchmark/**
node_modules/**/*.d.ts.map
node_modules/**/*.js.map
# 注意:保留关键运行时依赖
# node_modules/ignore/ - 运行时需要
# node_modules/java-ast/ - 运行时需要
# 开发工具和配置
.vscode/**
.cursor/**
.history/**
.specstory/**
# Memory Bank 和项目文档 (开发记录)
.memory-bank/**
memory-bank/**
# 双平台发布配置文档 (开发者指南,用户不需要)
docs/**
scripts/**
# CI/CD 配置 (用户不需要)
.github/**
# 开发指南文档 (用户不需要)
local-verification-guide.md
icon-design-spec.md
# RestfulHelper子项目 (源码参考,用户不需要)
RestfulHelper/**
# 优化:避免文件重复 - 排除dist目录中的重复资源
dist/images/**
dist/media/**
dist/LICENSE
dist/README.md
# 优化:排除大型图片文件(保留基础icon)
images/icon@2x.png
images/icon@4x.png
images/image.png
# 系统文件
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# 临时文件
temp/**
tmp/**
.tmp/**
*.tmp
*.swp
*.swo
*~
# 日志文件
logs/**
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Git 相关
.git/**
.gitignore
.gitmodules
# 构建和打包产物 (避免递归包含)
*.vsix
*.tgz
build/**
# 环境变量文件
.env*
# IDE 配置
.idea/**