Skip to content

Commit 9c253c0

Browse files
committed
initial_commit
0 parents  commit 9c253c0

29 files changed

Lines changed: 9573 additions & 0 deletions

.gitignore

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log
4+
yarn-debug.log
5+
yarn-error.log
6+
.pnpm-debug.log
7+
8+
# Build / Distribution
9+
dist/
10+
build/
11+
lib/
12+
coverage/
13+
14+
# Environment variables
15+
.env
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
# IDE & editors
22+
.idea/
23+
.vscode/
24+
*.sublime-project
25+
*.sublime-workspace
26+
.project
27+
.classpath
28+
.c9/
29+
*.launch
30+
.settings/
31+
*.suo
32+
*.ntvs*
33+
*.njsproj
34+
*.sln
35+
*.sw?
36+
37+
# OS files
38+
.DS_Store
39+
Thumbs.db
40+
ehthumbs.db
41+
Desktop.ini
42+
$RECYCLE.BIN/
43+
.directory
44+
45+
# Logs
46+
logs
47+
*.log
48+
49+
# Optional npm cache directory
50+
.npm
51+
52+
# Optional eslint cache
53+
.eslintcache
54+
55+
# TypeScript cache
56+
*.tsbuildinfo
57+
58+
# Optional REPL history
59+
.node_repl_history

0 commit comments

Comments
 (0)