mirror of
https://github.com/asyouplz/SpeechNote.git
synced 2026-07-22 16:30:31 +00:00
- Added Deepgram provider settings to plugin settings tab - Created DeepgramModelRegistry for managing models and features - Implemented dynamic provider selection (Auto/Whisper/Deepgram) - Added model selection with nova-2, nova, enhanced, and base models - Included feature toggles for all Deepgram capabilities - Added cost estimation display for selected models - Updated documentation with Deepgram integration guide 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
59 lines
No EOL
1.3 KiB
JSON
59 lines
No EOL
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7",
|
|
"ES2015",
|
|
"ES2016",
|
|
"ES2017",
|
|
"ES2018",
|
|
"ES2019",
|
|
"ES2020",
|
|
"ES2021",
|
|
"ES2022"
|
|
],
|
|
"paths": {
|
|
"src/*": ["src/*"],
|
|
"@core/*": ["src/core/*"],
|
|
"@infrastructure/*": ["src/infrastructure/*"],
|
|
"@presentation/*": ["src/presentation/*"],
|
|
"@application/*": ["src/application/*"],
|
|
"@domain/*": ["src/domain/*"],
|
|
"@utils/*": ["src/utils/*"],
|
|
"@types/*": ["src/types/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"declaration": false,
|
|
"declarationMap": false
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"config/**/*.json"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"main.js",
|
|
"**/*.spec.ts",
|
|
"**/*.test.ts"
|
|
]
|
|
} |