.gitignore•1.45 kB
# .gitignore
# Dependencies
# This is the most important one. Never commit your dependencies.
# They should be installed by the package manager (npm, pnpm, yarn) on each machine.
node_modules
# Build output
# This is the folder where your compiled TypeScript code goes.
# It should be generated from source code during a build step, not stored in git.
dist
# Logs
# Log files generated by package managers or Node.js.
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
logs
# Test runner output
# Default directory for test coverage reports from Vitest/Jest.
coverage
# Environment variables
# Never commit sensitive information like API keys or secrets.
# Use a .env.example file to show what variables are needed.
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Editor directories and files
# These are specific to each developer's code editor and should not be shared.
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.swp
# OS-generated files
# Files generated by macOS, Windows, and Linux operating systems.
.DS_Store
Thumbs.db
bin
obj
# Test output
test-results/
# Language-specific build artifacts
# Go
test/integration/languages/go/test-project/go.sum
# Rust
test/integration/languages/rust/test-project/target/
test/integration/languages/rust/test-project/Cargo.lock
.mcpregistry*