Skip to content

Commit 93c5e97

Browse files
committed
feat: Add .vscodeignore file to exclude unnecessary files from the extension package
1 parent 37b0bbd commit 93c5e97

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.vscodeignore

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Source files
2+
src/**
3+
tsconfig.json
4+
.eslintrc.json
5+
6+
# Scripts
7+
scripts/**
8+
9+
# Git and CI/CD files
10+
.git/**
11+
.github/**
12+
.gitignore
13+
14+
# Development and test files
15+
.vscode/**
16+
.vscode-test/**
17+
**/*.vsix
18+
**/*.tgz
19+
node_modules/**
20+
21+
# Documentation files that aren't needed in the extension package
22+
**/*.md
23+
!README.md
24+
!CHANGELOG.md
25+
!LICENSE
26+
27+
# Build and configuration files
28+
out/**/*.map
29+
out/**/*.ts
30+
out/test/**

0 commit comments

Comments
 (0)