# Development files
.vscode/**
.vscode-test/**
node_modules/**
tsconfig*.json
webpack.config.js
.eslintrc*
.prettierrc*

# From <https://github.com/microsoft/vscode-extension-samples/blob/main/lsp-sample/.vscodeignore>
!node_modules/vscode-jsonrpc/**
!node_modules/vscode-languageclient/**
!node_modules/vscode-languageserver-protocol/**
!node_modules/vscode-languageserver-types/**
!node_modules/{minimatch,brace-expansion,concat-map,balanced-match}/**
!node_modules/{semver,lru-cache,yallist}/**
!node_modules/{which,isexe}/**
!node_modules/untildify/**

client/src/**

# Git and CI
.git/**
.github/**
.gitignore
.gitattributes

# Documentation
README.dev.md
CONTRIBUTING.md
docs/**

# Tests
test/**
tests/**
**/*.test.ts
**/*.test.js
coverage/**

# Build artifacts
*.vsix
*.tgz

# OS files  
.DS_Store
Thumbs.db

# Logs
*.log

# Ensure that mandatory files are included
!out/**
!dist/**
!LICENSE*