44 lines
634 B
Text
44 lines
634 B
Text
# Build files
|
|
.vscode-test/**
|
|
.vscode/**
|
|
.gitignore
|
|
.github/**
|
|
|
|
# Source files - only include compiled output
|
|
client/src/**
|
|
client/tsconfig.json
|
|
client/tsconfig.tsbuildinfo
|
|
client/testFixture/**
|
|
server/src/**
|
|
server/tsconfig.json
|
|
server/tsconfig.tsbuildinfo
|
|
|
|
# Root node_modules (but keep client/server node_modules for runtime deps)
|
|
node_modules/**
|
|
|
|
# Backup and temp files
|
|
*.backup*
|
|
*.bak
|
|
*.old
|
|
temp_*.ts
|
|
|
|
# Development files
|
|
scripts/**
|
|
eslint.config.mjs
|
|
tsconfig.json
|
|
|
|
# Documentation for development
|
|
.editorconfig
|
|
|
|
# Git files
|
|
.git/**
|
|
.gitattributes
|
|
|
|
# Test files
|
|
**/test/**
|
|
**/*.test.ts
|
|
**/*.spec.ts
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|