work on getting close to refactor

This commit is contained in:
Boki 2025-06-22 11:08:26 -04:00
parent 8550b1de57
commit a63ccc96f5
15 changed files with 129 additions and 178 deletions

View file

@ -7,6 +7,24 @@
"module": "ESNext",
"moduleResolution": "bundler",
// "lib": ["ESNext"],
// "target": "ESNext",
// "module": "Preserve",
// "moduleDetection": "force",
"jsx": "react-jsx",
// "allowJs": true,
// Bundler mode
// "moduleResolution": "bundler",
// "allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
// "noEmit": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
// Type checking
"strict": true,
"noImplicitAny": true,
@ -16,13 +34,10 @@
"declarationMap": true,
// stuff claude put in
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
// Module interoperability
"esModuleInterop": true,