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/**",
|
2021-03-22 13:02:41 +01:00
|
|
|
"**/OpenViduInternal/KurentoUtils/**",
|
|
|
|
"**/OpenViduInternal/Logger/**",
|
2018-04-26 15:33:47 +02:00
|
|
|
],
|
|
|
|
excludeExternals: true,
|
|
|
|
excludePrivate: true,
|
2020-09-22 17:15:12 +02:00
|
|
|
excludeProtected: true,
|
2020-04-05 20:03:46 +02:00
|
|
|
excludeNotExported: true,
|
2019-04-23 12:52:37 +02:00
|
|
|
theme: "default",
|
2020-04-05 20:03:46 +02:00
|
|
|
readme: "none",
|
|
|
|
includeVersion: true,
|
|
|
|
listInvalidSymbolLinks: true,
|
|
|
|
out: "./docs"
|
2018-04-26 15:33:47 +02:00
|
|
|
}
|