1
+
2
+ # Created by https://www.toptal.com/developers/gitignore/api/node,yarn,visualstudiocode
3
+ # Edit at https://www.toptal.com/developers/gitignore?templates=node,yarn,visualstudiocode
4
+
5
+ # ## Node ###
6
+ # Logs
7
+ logs
8
+ * .log
9
+ npm-debug.log *
10
+ yarn-debug.log *
11
+ yarn-error.log *
12
+ lerna-debug.log *
13
+
14
+ # Diagnostic reports (https://nodejs.org/api/report.html)
15
+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
16
+
17
+ # Runtime data
18
+ pids
19
+ * .pid
20
+ * .seed
21
+ * .pid.lock
22
+
23
+ # Directory for instrumented libs generated by jscoverage/JSCover
24
+ lib-cov
25
+
26
+ # Coverage directory used by tools like istanbul
27
+ coverage
28
+ * .lcov
29
+
30
+ # nyc test coverage
31
+ .nyc_output
32
+
33
+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
34
+ .grunt
35
+
36
+ # Bower dependency directory (https://bower.io/)
37
+ bower_components
38
+
39
+ # node-waf configuration
40
+ .lock-wscript
41
+
42
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
43
+ build /Release
44
+
45
+ # Dependency directories
46
+ node_modules /
47
+ jspm_packages /
48
+
49
+ # TypeScript v1 declaration files
50
+ typings /
51
+
52
+ # TypeScript cache
53
+ * .tsbuildinfo
54
+
55
+ # Optional npm cache directory
56
+ .npm
57
+
58
+ # Optional eslint cache
59
+ .eslintcache
60
+
61
+ # Optional stylelint cache
62
+ .stylelintcache
63
+
64
+ # Microbundle cache
65
+ .rpt2_cache /
66
+ .rts2_cache_cjs /
67
+ .rts2_cache_es /
68
+ .rts2_cache_umd /
69
+
70
+ # Optional REPL history
71
+ .node_repl_history
72
+
73
+ # Output of 'npm pack'
74
+ * .tgz
75
+
76
+ # Yarn Integrity file
77
+ .yarn-integrity
78
+
79
+ # dotenv environment variables file
80
+ .env
81
+ .env.test
82
+ .env * .local
83
+
84
+ # parcel-bundler cache (https://parceljs.org/)
1
85
.cache
2
- public
3
- node_modules
4
- yarn.lock
86
+ .parcel-cache
87
+
88
+ # Next.js build output
89
+ .next
90
+
91
+ # Nuxt.js build / generate output
92
+ .nuxt
93
+ dist
94
+
95
+ # Storybook build outputs
96
+ .out
97
+ .storybook-out
98
+ storybook-static
99
+
100
+ # rollup.js default build output
101
+ dist /
102
+
103
+ # Gatsby files
104
+ .cache /
105
+ # Comment in the public line in if your project uses Gatsby and not Next.js
106
+ # https://nextjs.org/blog/next-9-1#public-directory-support
107
+ # public
108
+
109
+ # vuepress build output
110
+ .vuepress /dist
111
+
112
+ # Serverless directories
113
+ .serverless /
114
+
115
+ # FuseBox cache
116
+ .fusebox /
117
+
118
+ # DynamoDB Local files
119
+ .dynamodb /
120
+
121
+ # TernJS port file
122
+ .tern-port
123
+
124
+ # Stores VSCode versions used for testing VSCode extensions
125
+ .vscode-test
126
+
127
+ # Temporary folders
128
+ tmp /
129
+ temp /
130
+
131
+ # ## VisualStudioCode ###
132
+ .vscode /*
133
+ ! .vscode /settings.json
134
+ ! .vscode /tasks.json
135
+ ! .vscode /launch.json
136
+ ! .vscode /extensions.json
137
+ * .code-workspace
138
+
139
+ # ## VisualStudioCode Patch ###
140
+ # Ignore all local history of files
141
+ .history
142
+ .ionide
143
+
144
+ # ## yarn ###
145
+ # https://yarnpkg.com/advanced/qa#which-files-should-be-gitignored
146
+
147
+ .yarn /*
148
+ ! .yarn /releases
149
+ ! .yarn /plugins
150
+ ! .yarn /sdks
151
+ ! .yarn /versions
152
+
153
+ # if you are NOT using Zero-installs, then:
154
+ # comment the following lines
155
+ ! .yarn /cache
156
+
157
+ # and uncomment the following lines
158
+ # .pnp.*
159
+
160
+ # End of https://www.toptal.com/developers/gitignore/api/node,yarn,visualstudiocode
0 commit comments