fixed up qm and added types to BaseHandler for typesafety

This commit is contained in:
Boki 2025-06-28 21:49:33 -04:00
parent 87b1cad4f5
commit 2e86598262
20 changed files with 164 additions and 109 deletions

View file

@ -6,12 +6,11 @@
"composite": true,
"incremental": true,
"types": ["bun-types"],
// Modern TC39 Stage 3 decorators (TypeScript 5+ default)
"experimentalDecorators": false,
// Use legacy decorators for compatibility with the handler system
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
// Suppress decorator-related type checking issues due to Bun's hybrid implementation
"skipLibCheck": true,
"suppressImplicitAnyIndexErrors": true
"skipLibCheck": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]