-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vscodeignore
More file actions
61 lines (52 loc) · 880 Bytes
/
.vscodeignore
File metadata and controls
61 lines (52 loc) · 880 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
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
# Source files (bundled output is in out/extension.js)
src/**
!src/**/*.d.ts
# TypeScript compiled files (we use esbuild bundle instead)
out/**
!out/extension.js
# Rust source (binary is pre-built)
server/src/**
server/Cargo.toml
server/Cargo.lock
server/target/**
server/bin/**
Cargo.toml
Cargo.lock
# Development files
.vscode/**
.github/**
.claude/**
.codemender/**
*.vsix
# Test files
**/*.test.ts
**/*.test.js
**/*.test.d.ts
**/test/**
**/tests/**
**/__tests__/**
**/fixtures/**
# Build artifacts and caches
target/**
node_modules/**
.turbo/**
logs/**
# Documentation (except README, LICENSE, CHANGELOG)
docs/**
!docs/AI_TOOL_EXAMPLES.md
CONTRIBUTING.md
PROGRESS.md
# Config files
.eslintrc*
.prettierrc*
tsconfig.json
vitest.config.*
vsforge.config.json
.gitignore
esbuild.js
# Scripts (not needed at runtime)
scripts/**
# Editor and OS files
.DS_Store
*.swp
*.swo