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