-
Notifications
You must be signed in to change notification settings - Fork 2
/
.vscodeignore
77 lines (59 loc) · 831 Bytes
/
.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# this extension doesn't need any node modules
# if I don't ignore node_modules, `vsce` will pack optional dependencies into the extension
node_modules
out/**/*.json
ts
#
#region main
# template: .vscodeignore
# author: hangxingliu
# license: MIT
# version: 2024-03-16
#
# config for building/bundling
tsconfig*.json
*.tsbuildinfo
.swcrc
# spellchecker
cspell.yml
# output files
artifacts
.tsc
# cache directory
cache
cache*
# scripts
scripts
# documents
docs
# source files
src
*.d.ts
# test files
*.spec.*
test
# github files
.github
# built vscode package
.vsix
# vscode configuartion and test files
.vscode
.vscode-test
.vscode-test-web
# ignore gitignore
.gitignore
# example files
examples
# archived files
*.tgz
*.vsix
*.zip
*.7z
*.tar
# macos files
.DS_Store
._*
# logs
logs
*.log
#endregion main