mirror of https://github.com/OpenVidu/openvidu.git
fix(tsconfig): add skipLibCheck comment for Livekit track processors
parent
7f00318cbb
commit
3adfa91c54
|
@ -15,7 +15,7 @@
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"types": ["jasmine", "node"],
|
"types": ["jasmine", "node"],
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"skipLibCheck": true
|
"skipLibCheck": true // Livekit track processors fails with typescript types checking
|
||||||
},
|
},
|
||||||
"exclude": ["node_modules", "src/test.ts", "**/*.spec.ts", "**/*.mock.ts"]
|
"exclude": ["node_modules", "src/test.ts", "**/*.spec.ts", "**/*.mock.ts"]
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,8 @@
|
||||||
],
|
],
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
"resolveJsonModule": true
|
"resolveJsonModule": true,
|
||||||
|
"skipLibCheck": true // Livekit track processors fails with typescript types checking
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"src/test.ts"
|
"src/test.ts"
|
||||||
|
|
|
@ -5,7 +5,8 @@
|
||||||
"types": [],
|
"types": [],
|
||||||
"paths": {
|
"paths": {
|
||||||
"openvidu-components-angular": ["dist/openvidu-components-angular"]
|
"openvidu-components-angular": ["dist/openvidu-components-angular"]
|
||||||
}
|
},
|
||||||
|
"skipLibCheck": true // Livekit track processors fails with typescript types checking
|
||||||
},
|
},
|
||||||
"files": ["./openvidu-webcomponent.main.ts"],
|
"files": ["./openvidu-webcomponent.main.ts"],
|
||||||
"include": ["src/**/*.d.ts"]
|
"include": ["src/**/*.d.ts"]
|
||||||
|
|
|
@ -14,6 +14,6 @@
|
||||||
"module": "es2020",
|
"module": "es2020",
|
||||||
"lib": ["es2021", "dom"],
|
"lib": ["es2021", "dom"],
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"skipLibCheck": true
|
"skipLibCheck": true // Livekit track processors fails with typescript types checking
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue