1+ # Created by https://www.toptal.com/developers/gitignore/api/node,macos,windows
2+ # Edit at https://www.toptal.com/developers/gitignore?templates=node,macos,windows
3+
4+ # ## macOS ###
5+ # General
6+ .DS_Store
7+ .AppleDouble
8+ .LSOverride
9+
10+ # Visual Studio Code
11+ .vscode
12+
13+ # Icon must end with two \r
14+ Icon
15+
16+
17+ # Thumbnails
18+ ._ *
19+
20+ # Files that might appear in the root of a volume
21+ .DocumentRevisions-V100
22+ .fseventsd
23+ .Spotlight-V100
24+ .TemporaryItems
25+ .Trashes
26+ .VolumeIcon.icns
27+ .com.apple.timemachine.donotpresent
28+
29+ # Directories potentially created on remote AFP share
30+ .AppleDB
31+ .AppleDesktop
32+ Network Trash Folder
33+ Temporary Items
34+ .apdisk
35+
36+ # ## macOS Patch ###
37+ # iCloud generated files
38+ * .icloud
39+
40+ # ## Node ###
41+ # Logs
42+ logs
43+ * .log
44+ npm-debug.log *
45+ yarn-debug.log *
46+ yarn-error.log *
47+ lerna-debug.log *
48+ .pnpm-debug.log *
49+
50+ # Diagnostic reports (https://nodejs.org/api/report.html)
51+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
52+
53+ # Runtime data
54+ pids
55+ * .pid
56+ * .seed
57+ * .pid.lock
58+
59+ # Directory for instrumented libs generated by jscoverage/JSCover
60+ lib-cov
61+
62+ # Coverage directory used by tools like istanbul
63+ coverage
64+ * .lcov
65+
66+ # nyc test coverage
67+ .nyc_output
68+
69+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
70+ .grunt
71+
72+ # Bower dependency directory (https://bower.io/)
73+ bower_components
74+
75+ # node-waf configuration
76+ .lock-wscript
77+
78+ # Compiled binary addons (https://nodejs.org/api/addons.html)
79+ build /Release
80+
81+ # Dependency directories
82+ node_modules /
83+ jspm_packages /
84+
85+ # Snowpack dependency directory (https://snowpack.dev/)
86+ web_modules /
87+
88+ # TypeScript cache
89+ * .tsbuildinfo
90+
91+ # Optional npm cache directory
92+ .npm
93+
94+ # Optional eslint cache
95+ .eslintcache
96+
97+ # Optional stylelint cache
98+ .stylelintcache
99+
100+ # Microbundle cache
101+ .rpt2_cache /
102+ .rts2_cache_cjs /
103+ .rts2_cache_es /
104+ .rts2_cache_umd /
105+
106+ # Optional REPL history
107+ .node_repl_history
108+
109+ # Output of 'npm pack'
110+ * .tgz
111+
112+ # Yarn Integrity file
113+ .yarn-integrity
114+
115+ # dotenv environment variable files
116+ .env
117+ .env.development.local
118+ .env.test.local
119+ .env.production.local
120+ .env.local
121+
122+ # parcel-bundler cache (https://parceljs.org/)
123+ .cache
124+ .parcel-cache
125+
126+ # Next.js build output
127+ .next
128+ out
129+
130+ # Nuxt.js build / generate output
131+ .nuxt
132+ dist
133+
134+ # Gatsby files
135+ .cache /
136+ # Comment in the public line in if your project uses Gatsby and not Next.js
137+ # https://nextjs.org/blog/next-9-1#public-directory-support
138+ # public
139+
140+ # vuepress build output
141+ .vuepress /dist
142+
143+ # vuepress v2.x temp and cache directory
144+ .temp
145+
146+ # Docusaurus cache and generated files
147+ .docusaurus
148+
149+ # Serverless directories
150+ .serverless /
151+
152+ # FuseBox cache
153+ .fusebox /
154+
155+ # DynamoDB Local files
156+ .dynamodb /
157+
158+ # TernJS port file
159+ .tern-port
160+
161+ # Stores VSCode versions used for testing VSCode extensions
162+ .vscode-test
163+
164+ # yarn v2
165+ .yarn /cache
166+ .yarn /unplugged
167+ .yarn /build-state.yml
168+ .yarn /install-state.gz
169+ .pnp. *
170+
171+ # ## Node Patch ###
172+ # Serverless Webpack directories
173+ .webpack /
174+
175+ # Optional stylelint cache
176+
177+ # SvelteKit build / generate output
178+ .svelte-kit
179+
180+ # ## Windows ###
181+ # Windows thumbnail cache files
182+ Thumbs.db
183+ Thumbs.db:encryptable
184+ ehthumbs.db
185+ ehthumbs_vista.db
186+
187+ # Dump file
188+ * .stackdump
189+
190+ # Folder config file
191+ [Dd ]esktop.ini
192+
193+ # Recycle Bin used on file shares
194+ $RECYCLE.BIN /
195+
196+ # Windows Installer files
197+ * .cab
198+ * .msi
199+ * .msix
200+ * .msm
201+ * .msp
202+
203+ # Windows shortcuts
204+ * .lnk
205+
206+ # End of https://www.toptal.com/developers/gitignore/api/node,macos,windows
207+ * .swp
208+ * .swo
209+
210+ build /
0 commit comments