Skip to content

Commit 531cc9c

Browse files
authored
V3 (#18)
* ts * ts * ts * tests * tests * web
1 parent 79ff9b4 commit 531cc9c

38 files changed

+14496
-8954
lines changed

.babelrc

Lines changed: 0 additions & 4 deletions
This file was deleted.

.gitignore

Lines changed: 61 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,62 @@
1-
node_modules
1+
# Dependencies
2+
node_modules/
3+
pnpm-lock.yaml
4+
package-lock.json
25
yarn.lock
3-
index.js
6+
7+
# Build outputs
8+
dist/
9+
build/
10+
*.tsbuildinfo
11+
12+
# Coverage reports
13+
coverage/
14+
*.lcov
15+
16+
# Environment variables
17+
.env
18+
.env.local
19+
.env.*.local
20+
21+
# Editor files
22+
.vscode/
23+
.idea/
24+
*.swp
25+
*.swo
26+
*~
27+
28+
# OS generated files
29+
.DS_Store
30+
.DS_Store?
31+
._*
32+
.Spotlight-V100
33+
.Trashes
34+
ehthumbs.db
35+
Thumbs.db
36+
37+
# Logs
38+
logs
39+
*.log
40+
npm-debug.log*
41+
yarn-debug.log*
42+
yarn-error.log*
43+
pnpm-debug.log*
44+
45+
# Runtime data
46+
pids
47+
*.pid
48+
*.seed
49+
*.pid.lock
50+
51+
# nyc test coverage
52+
.nyc_output
53+
54+
# ESLint cache
55+
.eslintcache
56+
57+
# TypeScript cache
58+
*.tsbuildinfo
59+
60+
# Temporary folders
61+
tmp/
62+
temp/

.npmignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Source files
2+
src/
3+
tests/
4+
*.test.ts
5+
*.spec.ts
6+
7+
# Configuration files
8+
tsconfig.json
9+
jest.config.js
10+
eslint.config.js
11+
.eslintrc*
12+
.gitignore
13+
14+
# Development files
15+
.github/
16+
.vscode/
17+
.idea/
18+
19+
# Build tools
20+
*.config.js
21+
*.config.ts
22+
23+
# Documentation
24+
docs/
25+
examples/
26+
27+
# Logs and coverage
28+
coverage/
29+
*.log
30+
.nyc_output
31+
32+
# OS files
33+
.DS_Store
34+
Thumbs.db

0 commit comments

Comments
 (0)