mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-04 04:34:05 +00:00
* refactor(providers): catalog voice models * feat(tts): route speech through voice models * refactor(tts): rename speaker selection fields * refactor(tts): mark default speech models * test(tts): type migrated speaker config assertions * refactor(providers): avoid catalog merge map spread * fix(tts): honor voice model fallbacks * refactor(tts): move speech core into package * chore(tts): register speech core knip workspace * fix(tts): show migrated speaker voice in status * fix(tts): satisfy speech core lint * fix(tts): preserve explicit model aliases * test(tts): narrow provider config assertion * test(doctor): allow slow commitments repair check --------- Co-authored-by: Peter Steinberger <steipete@gmail.com>
17 lines
343 B
JSON
17 lines
343 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "../.."
|
|
},
|
|
"include": ["./*.ts", "./src/**/*.ts"],
|
|
"exclude": [
|
|
"./**/*.test.ts",
|
|
"./dist/**",
|
|
"./node_modules/**",
|
|
"./src/test-support/**",
|
|
"./src/**/*test-helpers.ts",
|
|
"./src/**/*test-harness.ts",
|
|
"./src/**/*test-support.ts"
|
|
]
|
|
}
|