Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Angular.gitignore #4537

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 94 additions & 0 deletions Angular.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
# Angular
# Build output
/dist/
/out-tsc/
/tmp/
/coverage/
/e2e/test-output/
/.angular/

# Node modules
/node_modules/

# Dependency directories
/.npm/
/.yarn/

# Package lock and yarn lock files
/package-lock.json
/yarn.lock

# Environment files
/.env

# TypeScript cache files
*.tsbuildinfo

# Debug log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# IDE directories and files
/.idea/
/.vscode/
/project-folder/.idea/
/project-folder/.vscode/

# OS-specific files
.DS_Store
Thumbs.db

# Temporary files
*.bak
*.swp
*~

# Build artifacts from Angular CLI
/.angular-cli.json
.angular/

# Angular CLI cache
/.ng/

# VS Code settings
.vscode/settings.json

# System files
*.sublime-workspace
*.sublime-project

# Logs
/logs
/debug.log
*.log

# Temporary files from editor or operating system
*~.nfs*

# JetBrains IDE (e.g., WebStorm) files
/.idea/

# End-to-end testing
/cypress/

# Firebase hosting files
firebase.json

# Jest snapshot files
*.snap

# Webpack config
webpack.config.js
webpack.prod.js
webpack.dev.js

# Coverage output directory
/coverage/

# Test files
*.spec.ts
*.test.ts

# Miscellaneous
/.angular/