2018-04-26 15:33:47 +02:00
|
|
|
module.exports = {
|
|
|
|
lib: [
|
|
|
|
"lib.dom.d.ts",
|
|
|
|
"lib.es5.d.ts",
|
|
|
|
"lib.es2015.promise.d.ts",
|
|
|
|
"lib.scripthost.d.ts"
|
|
|
|
],
|
|
|
|
mode: "file",
|
|
|
|
module: "commonjs",
|
|
|
|
name: "OpenVidu Browser",
|
|
|
|
target: "es5",
|
|
|
|
externalPattern: "node_modules",
|
|
|
|
exclude: [
|
|
|
|
"**/OpenViduInternal/Interfaces/Private/**",
|
|
|
|
"**/OpenViduInternal/WebRtcStats/WebRtcStats.ts",
|
2019-07-29 10:07:14 +02:00
|
|
|
"**/OpenViduInternal/WebRtcPeer/WebRtcPeer.ts",
|
|
|
|
"**/OpenViduInternal/ScreenSharing/**",
|
|
|
|
"**/OpenViduInternal/KurentoUtils/**"
|
2018-04-26 15:33:47 +02:00
|
|
|
],
|
|
|
|
excludeExternals: true,
|
|
|
|
excludePrivate: true,
|
2019-04-23 12:52:37 +02:00
|
|
|
theme: "default",
|
2018-04-26 15:33:47 +02:00
|
|
|
readme: "none"
|
|
|
|
}
|