Refactor project: remove unused code, clean up logs, streamline error handling, update TypeScript configs, and enhance message streaming.

- Deployed
This commit is contained in:
geoffsee
2025-06-24 16:28:25 -04:00
parent 004ec580d3
commit 9698fc6f3b
19 changed files with 227 additions and 228 deletions

View File

@@ -1,15 +1,18 @@
{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"target": "esnext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"types": ["vite/client"],
"module": "esnext",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"allowJs": true,
"skipLibCheck": true,
"jsx": "react-jsx"
"outDir": "dist",
"rootDir": "."
},
"exclude": ["*.test.ts"]
"include": [
"*.ts"
],
"exclude": [
"node_modules",
"*.test.ts"
]
}