-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vscodeignore
More file actions
43 lines (37 loc) · 946 Bytes
/
Copy path.vscodeignore
File metadata and controls
43 lines (37 loc) · 946 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
# Development files
.vscode/**
.vscode-test/**
.github/**
**/*.ts
!client/src/encryption-util.ts
!scripts/file-encryptor.ts
**/*.map
.gitignore
.eslintrc.json
# Build files - IMPORTANT: Include compiled output!
**/tsconfig.json
**/tsconfig.base.json
# Test files
**/test/**
**/testFixture/**
client/src/test/**
scripts/e2e.sh
# Documentation
contributing.md
.travis.yml
docs/**
!docs/README.md
# ANTLR grammar source files (compiled output is in src/parser and needed!)
server/grammars/**/*.g4
server/grammars/**/*.tokens
server/grammars/**/*.interp
# Scripts
scripts/**
# BUT KEEP THESE ESSENTIAL FILES:
# - client/out/** (compiled extension code)
# - server/out/** (compiled language server code)
# - server/src/parser/grammars/** (ANTLR compiled parser - CRITICAL for LSP!)
# These are automatically included since we exclude *.ts but not *.js
!server/out/**
!client/out/**
!server/src/parser/**