- Removed the `livekit.egress.ts` file and replaced it with `livekit.egress.service.ts` for better clarity and consistency in naming. - Updated `livekit.module.ts` to reflect the new import path for the `LiveKitEgressService`. - Enhanced `livekit.room.service.ts` to utilize the new egress service structure, including improved egress configuration for recording sessions with dynamic file output settings. - Removed the `rootDir` property from `tsconfig.json` to streamline the TypeScript configuration.
25 lines
645 B
JSON
25 lines
645 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2021",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"strictBindCallApply": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"maxNodeModuleJsDepth": 10,
|
|
"resolveJsonModule": true,
|
|
}
|
|
} |