-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vscodeignore
More file actions
63 lines (63 loc) · 1.39 KB
/
Copy path.vscodeignore
File metadata and controls
63 lines (63 loc) · 1.39 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
.vscode/**
.vscode-test/**
src/**
.gitignore
.yarnrc
vsc-extension-quickstart.md
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
tools/**
justfile
PUBLISHING.md
.github/**
**/.DS_Store
**/.git
build.js
verify-build.js
yarn.lock
.claude/**
CLAUDE.md
*.vsix
.nvmrc
# 排除不必要的 node_modules 文件
node_modules/**/test/**
node_modules/**/tests/**
node_modules/**/spec/**
node_modules/**/docs/**
node_modules/**/doc/**
node_modules/**/*.md
node_modules/**/README*
node_modules/**/CHANGELOG*
node_modules/**/LICENSE*
node_modules/**/.git*
node_modules/**/.npm*
node_modules/**/.*ignore
node_modules/**/Makefile*
node_modules/**/makefile*
node_modules/**/*.gyp
# node_modules/**/*.node # Commented out - native modules needed for serialport
node_modules/**/*.cc
node_modules/**/*.cpp
node_modules/**/*.h
# 保留编译后的文件
!out/**
# 保留typings目录用于MicroPython自动补全
!typings/**
# 保留必要的运行时依赖
!node_modules/@serialport/**
!node_modules/serialport/**
!node_modules/fs-extra/**
!node_modules/just/**
# 保留其他必要的运行时依赖
!node_modules/graceful-fs/**
!node_modules/jsonfile/**
!node_modules/universalify/**
# 但排除这些依赖中的不必要文件
node_modules/@serialport/**/test/**
node_modules/@serialport/**/docs/**
node_modules/serialport/**/test/**
node_modules/serialport/**/docs/**
node_modules/fs-extra/**/test/**
node_modules/fs-extra/**/docs/**