forked from finos/architecture-as-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vscodeignore
More file actions
29 lines (22 loc) · 661 Bytes
/
.vscodeignore
File metadata and controls
29 lines (22 loc) · 661 Bytes
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
# Strict bundle-only .vscodeignore
# Ignore everything by default, then allow only essential files for the VSIX
**
# Keep package metadata
!package.json
!README.md
!CHANGELOG.md
!LICENSE
!docs/**
# Explicitly exclude developer documentation
DEVELOPER.md
# Keep built extension bundles
!dist/**
# Keep media/icons used by the extension (if present)
!media/**
!icons/**
# Keep this ignore file itself
!.vscodeignore
# Include the templates directory
!templates/**
# Exclude node_modules entirely to avoid pulling workspace symlinks or repo-top files
# (If you need to vendor runtime packages, copy just their runtime output into `dist/` before packaging.)