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

@@ -3,10 +3,17 @@
"compilerOptions": {
"types": ["jest", "node"],
"esModuleInterop": true,
"rootDir": ".."
// Remove rootDir override as base config now handles it
// "rootDir": "..",
"outDir": "../build/tests", // Optional: specify separate output for tests if needed
"composite": true // Keep composite for potential future use
},
"include": [
"**/*.ts",
"**/*.tsx"
"**/*.ts", // Keep existing test files
"../src/**/*.ts" // Add back source files referenced by tests
],
"exclude": [ // Add exclude for build output if needed
"../node_modules",
"../build"
]
}