ov-components: update dependencies and TypeScript configuration

- Updated @livekit/track-processors from 0.3.2 to ^0.5.6
- Updated livekit-client from 2.5.2 to 2.11.4
- Changed TypeScript lib option from "dom" to "DOM" in tsconfig.lib.json
- Added skipLibCheck option in tsconfig.lib.json and tsconfig.base.json
- Updated TypeScript lib option from "dom" to "dom" in tsconfig.base.json
master
Carlos Santos 2025-04-30 14:57:47 +02:00
parent 5433f516a9
commit 7f00318cbb
4 changed files with 1095 additions and 1237 deletions

File diff suppressed because it is too large Load Diff

View File

@ -9,9 +9,9 @@
"@angular/platform-browser": "19.2.8", "@angular/platform-browser": "19.2.8",
"@angular/platform-browser-dynamic": "19.2.8", "@angular/platform-browser-dynamic": "19.2.8",
"@angular/router": "19.2.8", "@angular/router": "19.2.8",
"@livekit/track-processors": "0.3.2", "@livekit/track-processors": "^0.5.6",
"autolinker": "4.0.0", "autolinker": "4.0.0",
"livekit-client": "2.5.2", "livekit-client": "2.11.4",
"rxjs": "7.8.1", "rxjs": "7.8.1",
"tslib": "2.7.0", "tslib": "2.7.0",
"zone.js": "^0.15.0" "zone.js": "^0.15.0"
@ -23,8 +23,6 @@
"@angular/compiler-cli": "19.2.8", "@angular/compiler-cli": "19.2.8",
"@angular/elements": "19.2.8", "@angular/elements": "19.2.8",
"@compodoc/compodoc": "^1.1.25", "@compodoc/compodoc": "^1.1.25",
"@types/dom-mediacapture-transform": "0.1.9",
"@types/dom-webcodecs": "0.1.11",
"@types/jasmine": "^5.1.4", "@types/jasmine": "^5.1.4",
"@types/node": "20.12.14", "@types/node": "20.12.14",
"@types/selenium-webdriver": "4.1.16", "@types/selenium-webdriver": "4.1.16",

View File

@ -5,7 +5,7 @@
"outDir": "../../dist/openvidu-components-angular", "outDir": "../../dist/openvidu-components-angular",
"module": "esnext", "module": "esnext",
"moduleResolution": "node", "moduleResolution": "node",
"lib": ["ES2020", "dom"], "lib": ["ES2020", "DOM"],
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"declaration": true, "declaration": true,
@ -14,7 +14,8 @@
"inlineSources": true, "inlineSources": true,
"resolveJsonModule": true, "resolveJsonModule": true,
"types": ["jasmine", "node"], "types": ["jasmine", "node"],
"allowSyntheticDefaultImports": true "allowSyntheticDefaultImports": true,
"skipLibCheck": true
}, },
"exclude": ["node_modules", "src/test.ts", "**/*.spec.ts", "**/*.mock.ts"] "exclude": ["node_modules", "src/test.ts", "**/*.spec.ts", "**/*.mock.ts"]
} }

View File

@ -12,10 +12,8 @@
"importHelpers": true, "importHelpers": true,
"target": "ES2022", "target": "ES2022",
"module": "es2020", "module": "es2020",
"lib": [ "lib": ["es2021", "dom"],
"es2018", "allowSyntheticDefaultImports": true,
"dom" "skipLibCheck": true
],
"allowSyntheticDefaultImports": true
} }
} }