-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.vscodeignore
More file actions
63 lines (57 loc) · 1.47 KB
/
.vscodeignore
File metadata and controls
63 lines (57 loc) · 1.47 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
###############################################
# VSIX CONTENT MINIMIZATION #
# Goal: Ship ONLY what is required for the #
# extension to run in VS Code. #
# Included (whitelisted): #
# - package.json (extension manifest) #
# - dist/extension.js (bundled code) #
# - resources/**/* (icons referenced) #
# - README.md (marketplace listing) #
# - LICENSE* (legal) #
# Everything else excluded. #
###############################################
# 1. Exclude broad development artifacts
src/
test/
dist/**
!dist/extension.js
# 2. Exclude documentation & misc (non-runtime)
SECURITY.md
SOFTWARE_ARCHITECTURE_SPECIFICATION.md
TESTPLAN.md
SETUP_GUIDE.md
SUPPORT.md
WELCOME.md
CATALOG_DISPLAY_NAMES_EXAMPLE.md
duplicate-remove-work-item.md
hackathon--*.md
example-catalog/
scripts/
debug-*.js
# 3. Exclude build & packaging helpers
build/
vsix/
build_vsix.ps1
build_vsix.sh
*.vsix
# 4. Exclude config & source artifacts not needed at runtime
tsconfig.json
**/*.ts
**/*.tsbuildinfo
**/*.map
**/*.log
.github/
.vscode/
.gitignore
.gitattributes
dev-sandbox/
node_modules/
.env
# 5. Re-include required assets (order matters)
!package.json
!README.md
!LICENSE*
!resources/
!resources/**
# (Already included above) !dist/extension.js
# (Intentionally allow .vscodeignore to be excluded from packaged VSIX)