mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 19:41:09 +02:00
- tsconfig: add allowImportingTsExtensions for .ts import paths (Bun pattern) - transcription: cast Azure response.json() to typed parameter via Parameters<> Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
471 B
JSON
19 lines
471 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"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|