Skip to content

Commit a4da8ac

Browse files
author
km-kwon
committed
INIT
0 parents  commit a4da8ac

14 files changed

Lines changed: 2105 additions & 0 deletions

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Dependencies
2+
node_modules/
3+
4+
# Build output
5+
dist/
6+
*.tsbuildinfo
7+
8+
# Editor
9+
.vscode/
10+
.idea/
11+
*.swp
12+
*.swo
13+
*~
14+
15+
# OS
16+
.DS_Store
17+
Thumbs.db
18+
19+
# Logs
20+
*.log
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*
24+
25+
# Testing
26+
coverage/
27+
.nyc_output/

.npmignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Source files
2+
src/
3+
tsconfig.json
4+
tsconfig.esm.json
5+
6+
# Config files
7+
.gitignore
8+
.eslintrc
9+
.prettierrc
10+
11+
# Documentation
12+
*.md
13+
!README.md
14+
15+
# Development files
16+
*.test.ts
17+
*.spec.ts
18+
19+
# Editor
20+
.vscode/
21+
.idea/
22+
23+
# Examples
24+
examples/

0 commit comments

Comments
 (0)