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