blob: e1d81c3c4f066d94f99bad004dadb8fcf9fe857e [file] [log] [blame]
Samuel Shuert2d7c7332024-01-25 14:46:03 -05001# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore
2
Samuel Shuertd7d2fe22024-01-25 15:20:24 -05003.direnv
4
Samuel Shuert2d7c7332024-01-25 14:46:03 -05005# Logs
6
7logs
8_.log
9npm-debug.log_
10yarn-debug.log*
11yarn-error.log*
12lerna-debug.log*
13.pnpm-debug.log*
14
15# Caches
16
17.cache
18
19# Diagnostic reports (https://nodejs.org/api/report.html)
20
21report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
22
23# Runtime data
24
25pids
26_.pid
27_.seed
28*.pid.lock
29
30# Directory for instrumented libs generated by jscoverage/JSCover
31
32lib-cov
33
34# Coverage directory used by tools like istanbul
35
36coverage
37*.lcov
38
39# nyc test coverage
40
41.nyc_output
42
43# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
44
45.grunt
46
47# Bower dependency directory (https://bower.io/)
48
49bower_components
50
51# node-waf configuration
52
53.lock-wscript
54
55# Compiled binary addons (https://nodejs.org/api/addons.html)
56
57build/Release
58
59# Dependency directories
60
61node_modules/
62jspm_packages/
63
64# Snowpack dependency directory (https://snowpack.dev/)
65
66web_modules/
67
68# TypeScript cache
69
70*.tsbuildinfo
71
72# Optional npm cache directory
73
74.npm
75
76# Optional eslint cache
77
78.eslintcache
79
80# Optional stylelint cache
81
82.stylelintcache
83
84# Microbundle cache
85
86.rpt2_cache/
87.rts2_cache_cjs/
88.rts2_cache_es/
89.rts2_cache_umd/
90
91# Optional REPL history
92
93.node_repl_history
94
95# Output of 'npm pack'
96
97*.tgz
98
99# Yarn Integrity file
100
101.yarn-integrity
102
103# dotenv environment variable files
104
105.env
106.env.development.local
107.env.test.local
108.env.production.local
109.env.local
110
111# parcel-bundler cache (https://parceljs.org/)
112
113.parcel-cache
114
115# Next.js build output
116
117.next
118out
119
120# Nuxt.js build / generate output
121
122.nuxt
123dist
124
125# Gatsby files
126
127# Comment in the public line in if your project uses Gatsby and not Next.js
128
129# https://nextjs.org/blog/next-9-1#public-directory-support
130
131# public
132
133# vuepress build output
134
135.vuepress/dist
136
137# vuepress v2.x temp and cache directory
138
139.temp
140
141# Docusaurus cache and generated files
142
143.docusaurus
144
145# Serverless directories
146
147.serverless/
148
149# FuseBox cache
150
151.fusebox/
152
153# DynamoDB Local files
154
155.dynamodb/
156
157# TernJS port file
158
159.tern-port
160
161# Stores VSCode versions used for testing VSCode extensions
162
163.vscode-test
164
165# yarn v2
166
167.yarn/cache
168.yarn/unplugged
169.yarn/build-state.yml
170.yarn/install-state.gz
171.pnp.*
172
173# IntelliJ based IDEs
174.idea
175
176# Finder (MacOS) folder config
177.DS_Store