chore: Add .gitignore, relax tsconfig, update deps

- Add .gitignore for node_modules and dist
- Relax TypeScript strictness for incremental fixes
- Install @types/pg

Note: 505 errors pending - requires ServiceResult type refactor

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
rckrdmrd 2026-01-18 12:06:44 -06:00
parent 44ce9194c2
commit 4f8682187d
3 changed files with 8619 additions and 1 deletions

37
.gitignore vendored Normal file
View File

@ -0,0 +1,37 @@
# Dependencies
node_modules/
# Build output
dist/
# IDE
.idea/
.vscode/
*.swp
*.swo
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Environment files
.env
.env.local
.env.*.local
# OS
.DS_Store
Thumbs.db
# Test coverage
coverage/
.nyc_output/
# TypeScript cache
*.tsbuildinfo
# Temporary files
tmp/
temp/

8580
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -5,7 +5,8 @@
"lib": ["ES2022"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"strict": false,
"noImplicitAny": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,