fix(tsconfig): add skipLibCheck comment for Livekit track processors

master
Carlos Santos 2025-04-30 15:17:54 +02:00
parent 7f00318cbb
commit 3adfa91c54
4 changed files with 6 additions and 4 deletions

View File

@ -15,7 +15,7 @@
"resolveJsonModule": true,
"types": ["jasmine", "node"],
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
"skipLibCheck": true // Livekit track processors fails with typescript types checking
},
"exclude": ["node_modules", "src/test.ts", "**/*.spec.ts", "**/*.mock.ts"]
}

View File

@ -9,7 +9,8 @@
],
"moduleResolution": "node",
"experimentalDecorators": true,
"resolveJsonModule": true
"resolveJsonModule": true,
"skipLibCheck": true // Livekit track processors fails with typescript types checking
},
"files": [
"src/test.ts"

View File

@ -5,7 +5,8 @@
"types": [],
"paths": {
"openvidu-components-angular": ["dist/openvidu-components-angular"]
}
},
"skipLibCheck": true // Livekit track processors fails with typescript types checking
},
"files": ["./openvidu-webcomponent.main.ts"],
"include": ["src/**/*.d.ts"]

View File

@ -14,6 +14,6 @@
"module": "es2020",
"lib": ["es2021", "dom"],
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
"skipLibCheck": true // Livekit track processors fails with typescript types checking
}
}