mirror of https://github.com/OpenVidu/openvidu.git
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.jsonmaster
parent
5433f516a9
commit
7f00318cbb
File diff suppressed because it is too large
Load Diff
|
@ -9,9 +9,9 @@
|
|||
"@angular/platform-browser": "19.2.8",
|
||||
"@angular/platform-browser-dynamic": "19.2.8",
|
||||
"@angular/router": "19.2.8",
|
||||
"@livekit/track-processors": "0.3.2",
|
||||
"@livekit/track-processors": "^0.5.6",
|
||||
"autolinker": "4.0.0",
|
||||
"livekit-client": "2.5.2",
|
||||
"livekit-client": "2.11.4",
|
||||
"rxjs": "7.8.1",
|
||||
"tslib": "2.7.0",
|
||||
"zone.js": "^0.15.0"
|
||||
|
@ -23,8 +23,6 @@
|
|||
"@angular/compiler-cli": "19.2.8",
|
||||
"@angular/elements": "19.2.8",
|
||||
"@compodoc/compodoc": "^1.1.25",
|
||||
"@types/dom-mediacapture-transform": "0.1.9",
|
||||
"@types/dom-webcodecs": "0.1.11",
|
||||
"@types/jasmine": "^5.1.4",
|
||||
"@types/node": "20.12.14",
|
||||
"@types/selenium-webdriver": "4.1.16",
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"outDir": "../../dist/openvidu-components-angular",
|
||||
"module": "esnext",
|
||||
"moduleResolution": "node",
|
||||
"lib": ["ES2020", "dom"],
|
||||
"lib": ["ES2020", "DOM"],
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"declaration": true,
|
||||
|
@ -14,7 +14,8 @@
|
|||
"inlineSources": true,
|
||||
"resolveJsonModule": true,
|
||||
"types": ["jasmine", "node"],
|
||||
"allowSyntheticDefaultImports": true
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"skipLibCheck": true
|
||||
},
|
||||
"exclude": ["node_modules", "src/test.ts", "**/*.spec.ts", "**/*.mock.ts"]
|
||||
}
|
||||
|
|
|
@ -1,21 +1,19 @@
|
|||
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
||||
{
|
||||
"compileOnSave": false,
|
||||
"compilerOptions": {
|
||||
"baseUrl": "./",
|
||||
"outDir": "./dist/out-tsc",
|
||||
"sourceMap": true,
|
||||
"declaration": false,
|
||||
"downlevelIteration": true,
|
||||
"experimentalDecorators": true,
|
||||
"moduleResolution": "node",
|
||||
"importHelpers": true,
|
||||
"target": "ES2022",
|
||||
"module": "es2020",
|
||||
"lib": [
|
||||
"es2018",
|
||||
"dom"
|
||||
],
|
||||
"allowSyntheticDefaultImports": true
|
||||
}
|
||||
"compileOnSave": false,
|
||||
"compilerOptions": {
|
||||
"baseUrl": "./",
|
||||
"outDir": "./dist/out-tsc",
|
||||
"sourceMap": true,
|
||||
"declaration": false,
|
||||
"downlevelIteration": true,
|
||||
"experimentalDecorators": true,
|
||||
"moduleResolution": "node",
|
||||
"importHelpers": true,
|
||||
"target": "ES2022",
|
||||
"module": "es2020",
|
||||
"lib": ["es2021", "dom"],
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"skipLibCheck": true
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue