538a3e855c
- Add resolveAudioContentType() to map video/* MIME to audio/* (fixes .mp4 uploads returning 'no speech detected') - Add detect_language=true for Deepgram auto-language detection (fixes non-English audio) - Add punctuate=true for better output quality - Forward language form param to Deepgram when provided - Apply same Content-Type fix to HuggingFace handler
50 lines
1.0 KiB
JSON
50 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"incremental": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@omniroute/open-sse": ["./open-sse"],
|
|
"@omniroute/open-sse/*": ["./open-sse/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.js",
|
|
"**/*.jsx",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts",
|
|
".next/dev/dev/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"open-sse",
|
|
"antigravity-manager-analysis",
|
|
"app.__qa_backup",
|
|
"vscode-extension",
|
|
"omnirouteCloud",
|
|
"omnirouteSite"
|
|
]
|
|
}
|