forked from a-ignatev/codeowners-tree
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vscodeignore
More file actions
55 lines (46 loc) · 1.01 KB
/
.vscodeignore
File metadata and controls
55 lines (46 loc) · 1.01 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
# Source files
src/**
# Test files
test/**
# Development files
.vscode/**
.git/**
.gitignore
tsconfig.json
.eslintrc.json
# Build artifacts (exclude source maps and type definitions, but keep compiled JS)
out/**/*.map
out/**/*.d.ts
# Keep the out folder for the compiled extension
# Documentation
docs/**
CHANGELOG.md
CONTRIBUTING.md
# GitHub files
.github/**
# Node modules optimization
node_modules/**/test/**
node_modules/**/tests/**
node_modules/**/examples/**
node_modules/**/docs/**
node_modules/**/README.md
node_modules/**/LICENSE*
node_modules/**/CHANGELOG*
node_modules/**/*.map
# IDE files
.vscode-test/**
*.vsix
# Dependencies - exclude only obvious development dependencies
node_modules/@types/mocha/**
node_modules/@types/node/**
node_modules/@types/vscode/**
node_modules/@typescript-eslint/**
node_modules/@vscode/**
node_modules/eslint/**
node_modules/glob/**
node_modules/mocha/**
node_modules/typescript/**
node_modules/@jest/**
node_modules/@sinonjs/**
node_modules/@sinclair/**
node_modules/@babel/**