docs: note TypeScript migration

This commit is contained in:
josedario87
2025-06-04 21:30:07 -06:00
parent dec4922d42
commit 0836c086b2
12 changed files with 545 additions and 30 deletions

12
chat-ui/tsconfig.json Normal file
View File

@@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "ES2019",
"module": "commonjs",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"include": ["src"]
}