-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vscodeignore
34 lines (25 loc) · 1.23 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
src/** # All source code
dist/** # Development build output
node_modules/** # Dependencies (users will install them)
.vscode/** # VS Code workspace settings
.vscode-test/** # VS Code test environment
.vscode-test.mjs # VS Code test runner config
*.map # Source maps
*.ts # TypeScript files
*.tsx # React TypeScript files
*.jsx # React JavaScript files
*.test.js # JavaScript test files
*.test.ts # TypeScript test files
test/** # Test directory
.gitignore # Git ignore config
webpack.config.js # Development webpack config
webpack.prod.js # Production webpack config
tsconfig.json # TypeScript config
**/tsconfig.json # Any additional TypeScript configs
**/.DS_Store # Mac OS system files
**/Thumbs.db # Windows system files
!out/** # Include the production build
!images/reactive.png # Include the extension icon
!package.json # Include metadata
!README.md # Include documentation
!CHANGELOG.md # Include version history