You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
451 B
36 lines
451 B
# Exclude node_modules directories
|
|
**/node_modules
|
|
**/node_modules/**
|
|
|
|
# Exclude build artifacts
|
|
**/dist
|
|
**/build
|
|
**/.rush/temp
|
|
**/.rush/build-cache
|
|
**/common/temp
|
|
|
|
# Exclude development files
|
|
**/.git
|
|
**/.gitignore
|
|
**/.eslintrc*
|
|
**/.prettierrc*
|
|
**/*.log
|
|
|
|
# Exclude test files
|
|
**/__tests__
|
|
**/*.test.*
|
|
**/*.spec.*
|
|
|
|
# Exclude documentation
|
|
**/README.md
|
|
**/CHANGELOG.md
|
|
**/docs
|
|
|
|
# Exclude IDE files
|
|
**/.vscode
|
|
**/.idea
|
|
**/*.swp
|
|
**/*.swo
|
|
*.iml
|
|
*.iws
|
|
*.ipr |