Skip to content

Commit c19a69b

Browse files
committed
initial commit
1 parent 6d20c7b commit c19a69b

21 files changed

+3085
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,9 @@ dist
134134
.yarn/build-state.yml
135135
.yarn/install-state.gz
136136
.pnp.*
137+
138+
# built files
139+
lib/
140+
141+
# bun lock file
142+
bun.lockb

.npmignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Development files
2+
*.test.ts
3+
tests/
4+
examples/
5+
docs/
6+
.git/
7+
.gitignore
8+
tsconfig.json
9+
bun.lock
10+
11+
# Build artifacts
12+
node_modules/
13+
*.log
14+
*.tsbuildinfo
15+
16+
# IDE files
17+
.vscode/
18+
.idea/
19+
*.swp
20+
*.swo
21+
22+
# OS files
23+
.DS_Store
24+
Thumbs.db

.prettierrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"semi": false
3+
}

0 commit comments

Comments
 (0)