Skip to content

Commit 6f9c43f

Browse files
authored
Merge pull request #1 from Zheruel/initial-setup
initial setup
2 parents 0bc665c + 93013e4 commit 6f9c43f

File tree

6 files changed

+2161
-0
lines changed

6 files changed

+2161
-0
lines changed

.gitignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Dependencies
2+
node_modules/
3+
4+
# Build output
5+
dist/
6+
*.tsbuildinfo
7+
8+
# IDE
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+
pnpm-debug.log*
25+
26+
# Environment variables
27+
.env
28+
.env.local
29+
.env.*.local
30+
31+
# Testing
32+
coverage/
33+
.nyc_output/
34+
35+
# Temporary files
36+
tmp/
37+
temp/

.npmignore

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Source files
2+
src/
3+
tests/
4+
5+
# Config files
6+
tsconfig.json
7+
tsup.config.ts
8+
vitest.config.ts
9+
.gitignore
10+
.npmignore
11+
12+
# IDE
13+
.vscode/
14+
.idea/
15+
16+
# Git
17+
.git/
18+
.github/
19+
20+
# Testing
21+
coverage/
22+
.nyc_output/
23+
24+
# Misc
25+
*.log
26+
.DS_Store
27+
.env
28+
tmp/
29+
temp/
30+
31+
# Development files
32+
*.test.ts
33+
*.spec.ts
34+
*.test.js
35+
*.spec.js

0 commit comments

Comments
 (0)