- Added @types/dom-mediacapture-transform to package.json for type definitions. - Changed hoveringTimeout type in StreamComponent to ReturnType<typeof setTimeout> for better type safety. - Updated TypeScript lib version from ES2020 to ES2021 in tsconfig files for improved features. - Included dom-mediacapture-transform in types for TypeScript configurations across various tsconfig files. - Removed empty types array in tsconfig.app.json to ensure proper type checking. - Adjusted skipLibCheck settings in tsconfig files to improve compatibility with Livekit track processors.
18 lines
286 B
JSON
18 lines
286 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out-tsc/app",
|
|
"paths": {
|
|
"openvidu-components-angular": [
|
|
"dist/openvidu-components-angular"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
"src/main.ts"
|
|
],
|
|
"include": [
|
|
"src/**/*.d.ts"
|
|
]
|
|
}
|