-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.vscodeignore
More file actions
126 lines (104 loc) · 1.71 KB
/
.vscodeignore
File metadata and controls
126 lines (104 loc) · 1.71 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# Source files - only compiled output needed
src/extension/main.ts
src/extension/main.spec.ts
src/extension/__mocks__/
src/extension/*.test.ts
src/extension/*.spec.ts
src/internal/
src/pkg/
src/shared/
src/tests/
src/global.d.ts
# Extension development files
src/extension/tsconfig.json
src/extension/vitest.config.ts
src/extension/.gitignore
src/extension/.npmrc
src/extension/pnpm-lock.yaml
src/extension/package.json
src/extension/coverage/
src/extension/out/
src/extension/LICENSE
# Extension node_modules - bundled via tsup
src/extension/node_modules/
# Build config
tsup.config.ts
# View source (built output in view-dist)
src/view/
# Root public folder - exclude screenshots
public/screenshots/
public/screenshots_legacy/
public/*.gif
# All node_modules
node_modules/
src/node_modules/
.pnpm-store/
# Development config files
.vscode/
.vscode-test/
.vscode-test-web/
.husky/
.devcontainer/
.github/
.gitlab-ci.yml
.travis.yml
.circleci/
# Turborepo
.turbo/
**/.turbo/
turbo.json
# pnpm workspace
pnpm-workspace.yaml
# Playwright test artifacts
playwright-report/
test-results/
# Git
.git/
.gitignore
# Documentation (keep README/CHANGELOG for marketplace)
CLAUDE.md
docs/
# AI assistant configs
.claude/
.gemini/
.mcp.json
.playwright-mcp/
# Development tools
src/eslint.config.js
eslint.config.js
eslint.config.base.js
.lintstagedrc.js
.releaserc.js
.prettierrc
.prettierignore
.npmrc
justfile
tsconfig.json
tsconfig.base.json
# Lock files
pnpm-lock.yaml
package-lock.json
yarn.lock
# IDE/OS files
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# Temp files
tmp/
temp/
*.tmp
*.log
# Source maps
**/*.map
# Test files in output
**/*.spec.js
# Misc
.vsixignore
# Test coverage
coverage/
.nyc_output/
# Build artifacts
*.vsix