amical/apps/electron/tsconfig.json
Haritabh d7481f7398
Desktop MVP (#23)
* chore: logging + transcription improvements

* chore: add ax context call on rec start

* chore: amical assets

* chore: qol setup changes

* chore: add sidebar

* chore: transcriptions tab

* chore: transcriptions ui

* chore: frame improvements

* chore: ui rework

* chore logger fixes

* chore: whisper model download func

* chore: update model downloading

* chore: transcription updates

* chore: improved logging

* chore: log whisper metrics + raw pcm proc

* chore: ste up libsql

* chore: layout fixes

* chore: clean up ipcs

* chore: integrate trpc

* chore: formatting fixes

* chroe: fix pnpm lock file

* chore: clean up
2025-06-25 17:20:03 +05:30

24 lines
613 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "nodenext",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"noImplicitAny": true,
"sourceMap": true,
"outDir": "dist",
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"jsx": "react-jsx",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"strict": true,
"baseUrl": ".",
"noEmit": true,
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src/**/*", "forge.config.ts", "vite.*.config.mts", "drizzle.config.ts"],
"exclude": ["node_modules", "dist", ".vite", "out"]
}