Skip to content

Commit 3098619

Browse files
committed
Initial commit
0 parents  commit 3098619

26 files changed

Lines changed: 2923 additions & 0 deletions

File tree

.gitignore

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
7+
# TypeScript build output
8+
dist/
9+
build/
10+
*.tsbuildinfo
11+
12+
# IDE and editor files
13+
.idea/
14+
.vscode/
15+
*.swp
16+
*.swo
17+
.DS_Store
18+
.env
19+
.env.local
20+
.env.*.local
21+
22+
# Logs
23+
logs/
24+
*.log
25+
26+
# Test coverage
27+
coverage/
28+
29+
# macOS specific
30+
.DS_Store
31+
.AppleDouble
32+
.LSOverride
33+
Icon
34+
._*
35+
.DocumentRevisions-V100
36+
.fseventsd
37+
.Spotlight-V100
38+
.TemporaryItems
39+
.Trashes
40+
.VolumeIcon.icns
41+
.com.apple.timemachine.donotpresent
42+
43+
# Xcode
44+
*.xcodeproj/*
45+
!*.xcodeproj/project.pbxproj
46+
!*.xcodeproj/xcshareddata/
47+
!*.xcworkspace/contents.xcworkspacedata
48+
**/xcshareddata/WorkspaceSettings.xcsettings
49+
*.xcuserstate
50+
project.xcworkspace/
51+
xcuserdata/
52+
53+
# Debug files
54+
.nyc_output/
55+
*.map
56+
57+
# Optional npm cache directory
58+
.npm
59+
60+
# Optional eslint cache
61+
.eslintcache
62+
63+
# Optional REPL history
64+
.node_repl_history
65+
66+
# Output of 'npm pack'
67+
*.tgz
68+
69+
# Yarn Integrity file
70+
.yarn-integrity
71+
72+
# dotenv environment variable files
73+
.env
74+
.env.test
75+
.env.production
76+
77+
# parcel-bundler cache
78+
.cache
79+
.parcel-cache

0 commit comments

Comments
 (0)