feat: Refactor codebase, improve types, attempt test fixes

This commit is contained in:
leonardsellem
2025-03-31 11:20:05 +02:00
parent d16ad72b22
commit ecd9133437
38 changed files with 829 additions and 811 deletions

View File

@@ -11,10 +11,9 @@
"resolveJsonModule": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"rootDir": "src",
"rootDir": ".", // Set rootDir to encompass both src and tests
"lib": [
"ES2020",
"DOM"
"ES2020" // Removed "DOM" as it's likely unused in a Node.js server
],
"types": [
"node"
@@ -28,4 +27,5 @@
"build",
"**/*.test.ts"
]
// Remove project reference
}