generated from tailored/router-db-template
- Introduced AsrRelatime class for real-time ASR using WebSocket. - Removed AliAsrServer and related files from the aliyun provider. - Updated base class for ASR to use WSServer for WebSocket connections. - Added new test cases for the updated ASR functionality. - Cleaned up unused imports and files across the project. - Adjusted TypeScript configuration for better module resolution. - Implemented silence generation for audio streaming.
27 lines
480 B
JSON
27 lines
480 B
JSON
{
|
|
"extends": "@kevisual/types/json/backend.json",
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"target": "esnext",
|
|
"baseUrl": ".",
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./node_modules/@kevisual/types/index.d.ts"
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
],
|
|
"@agent/*": [
|
|
"agent/*"
|
|
],
|
|
"@kevisual/video-tools/*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"agent/**/*",
|
|
],
|
|
} |