chore: 优化打包配置,排除重复的 exe 文件

- 添加 .vscodeignore 排除 tools/waveform_trace/src/dist
   - 移除 package.json 的 files 字段
   - 减小 .vsix 打包体积
This commit is contained in:
Roe-xin
2026-03-04 15:11:46 +08:00
parent f7f45668d3
commit 421a8934a7
2 changed files with 24 additions and 8 deletions

24
.vscodeignore Normal file
View File

@ -0,0 +1,24 @@
# 开发文件
.vscode/**
.vscode-test/**
src/**
.gitignore
.yarnrc
vsc-extension-quickstart.md
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
# 测试文件
out/test/**
# 依赖
node_modules/**
# 只排除 waveform_trace 的 src/dist 目录
tools/waveform_trace/src/dist/**
# Git 相关
.git/**
.github/**