Skip to content

Commit 8d9c8ef

Browse files
committed
Add .gitignore
1 parent da6beec commit 8d9c8ef

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.gitignore

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Node.js
2+
node_modules/
3+
npm-debug.log
4+
yarn-debug.log
5+
yarn-error.log
6+
7+
# TypeScript
8+
dist/
9+
*.tsbuildinfo
10+
11+
# Environment
12+
.env
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
18+
# IDE and editors
19+
.idea/
20+
.vscode/
21+
*.swp
22+
*.swo
23+
.DS_Store
24+
25+
# Logs
26+
logs/
27+
*.log
28+
29+
# Testing
30+
coverage/
31+
.nyc_output/
32+
33+
# Misc
34+
.cache/
35+
.temp/

0 commit comments

Comments
 (0)