chore: Add .gitignore and config files

- Add .gitignore for node_modules and build artifacts
- Add package-lock.json for dependency lock
- Add tsconfig.node.json for node configuration

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Adrian Flores Cortes 2026-01-30 12:11:00 -06:00
parent 1de866febe
commit b3982844f8
3 changed files with 7137 additions and 0 deletions

33
.gitignore vendored Normal file
View File

@ -0,0 +1,33 @@
# Dependencies
node_modules/
# Build output
dist/
build/
# Environment
.env
.env.local
.env.*.local
# Logs
*.log
npm-debug.log*
# IDE
.idea/
.vscode/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# TypeScript build info
*.tsbuildinfo
tsconfig.node.tsbuildinfo
# Vite
vite.config.js
vite.config.d.ts

7093
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

11
tsconfig.node.json Normal file
View File

@ -0,0 +1,11 @@
{
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"strict": true
},
"include": ["vite.config.ts"]
}