mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 18:21:24 +02:00
- Health endpoint, service key auth, 404 handler tests - Transcribe and append endpoint validation tests - Azure speech service config tests (getAvailableSpeechServices, pickRandomService) - Export app for testability Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
461 B
JSON
19 lines
461 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ESNext"],
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"allowImportingTsExtensions": true,
|
|
"outDir": "dist",
|
|
"types": ["bun-types", "node"]
|
|
},
|
|
"include": ["src/**/*.ts", "vitest.config.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|