- 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.
22 lines
686 B
JSON
22 lines
686 B
JSON
/* 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": ["es2021", "dom"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"types": ["dom-mediacapture-transform"],
|
|
"skipDefaultLibCheck": true, // Livekit track processors fails with typescript types checking
|
|
///"skipLibCheck": true // Livekit track processors fails with typescript types checking
|
|
}
|
|
}
|