-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vscodeignore
57 lines (46 loc) · 2.09 KB
/
.vscodeignore
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
# ==================================
# VSCODE EXTENSION IGNORE FILE
# ==================================
# IGNORED FILES/DIRECTORIES
# ------------------------
# Source and Build Files
src/** # All TypeScript/JavaScript source files
dist/** # Development build output from webpack
node_modules/** # NPM dependencies (will be installed by user)
.vscode/** # VS Code editor settings
.vscode-test/** # VS Code test environment files
.vscode-test.mjs # VS Code test configuration
# Config and Build Files
.gitignore # Git ignore file
.yarnrc # Yarn config
vsc-extension-quickstart.md # VS Code extension guide
eslint.config.mjs # ESLint configuration
webpack.config.js # Development webpack config
webpack.prod.js # Production webpack config
tsconfig.json # TypeScript configuration
**/tsconfig.json # Any other TypeScript configs
# Debug and Source Map Files
**/*.map # Source maps for debugging
**/*.ts # TypeScript source files
**/*.test.js # JavaScript test files
**/*.test.ts # TypeScript test files
# Test Files
test/** # Test directory
**/test/** # Any test directories
# System Files
**/.DS_Store # Mac OS system files
**/Thumbs.db # Windows system files
# KEPT FILES (using ! to un-ignore)
# --------------------------------
!out/** # KEEP: Production builds from webpack
# This is where our extension actually runs from
!images/Reactive.png # KEEP: Extension icon
# Required for VS Code marketplace
!package.json # KEEP: Required for extension metadata and npm
# Contains extension configuration and dependencies
!README.md # KEEP: Extension documentation
# Shows up on VS Code marketplace
!CHANGELOG.md # KEEP: Version history
# Important for users to track changes
# Note: Removed the React components sourcemap support
# as it's not needed in production and reduces package size