Created
May 5, 2025 12:09
-
-
Save Nefleex/f3f41e005a46edcae692ab0fe8e93905 to your computer and use it in GitHub Desktop.
node .gitignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Node.js dependencies | |
| node_modules/ | |
| jspm_packages/ | |
| # Optional npm cache directory | |
| .npm/ | |
| .npmrc | |
| # Yarn | |
| .yarn/ | |
| .pnp.* | |
| .yarnrc.yml | |
| # Bun | |
| .bun/ | |
| # Logs | |
| logs/ | |
| *.log | |
| npm-debug.log* | |
| yarn-debug.log* | |
| yarn-error.log* | |
| pnpm-debug.log* | |
| lerna-debug.log* | |
| # Runtime data | |
| pids/ | |
| *.pid | |
| *.seed | |
| *.pid.lock | |
| # Directory for instrumented libs generated by jscoverage/Jest | |
| coverage/ | |
| # Environment variables | |
| .env | |
| .env.*.local | |
| # Build output | |
| dist/ | |
| build/ | |
| tmp/ | |
| temp/ | |
| .cache/ | |
| .next/ | |
| out/ | |
| .svelte-kit/ | |
| .solid/ | |
| .storybook/ | |
| .eslintcache | |
| # VS Code | |
| .vscode/ | |
| .history/ | |
| # Mac and Linux | |
| .DS_Store | |
| .AppleDouble | |
| .LSOverride | |
| .Trashes | |
| Icon? | |
| ehthumbs.db | |
| Thumbs.db | |
| # TypeScript | |
| *.tsbuildinfo | |
| # Binaries | |
| *.exe | |
| *.dll | |
| *.so | |
| *.dylib | |
| # Test coverage | |
| .nyc_output/ | |
| # Logs and profiling | |
| heapdump.heapsnapshot | |
| # GitHub Codespaces | |
| .devcontainer/ | |
| # Optional: PM2 logs and runtime | |
| .pm2/ | |
| # Optional: JetBrains IDEs | |
| .idea/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment