mirror of https://github.com/OpenVidu/openvidu.git
25 lines
700 B
JavaScript
25 lines
700 B
JavaScript
![]() |
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",
|
||
|
"**/OpenViduInternal/VersionAdapter.ts"
|
||
|
],
|
||
|
excludeExternals: true,
|
||
|
excludePrivate: true,
|
||
|
theme: "default",
|
||
|
plugin: [
|
||
|
"typedoc-plugin-sourcefile-url",
|
||
|
],
|
||
|
'sourcefile-url-prefix': "https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/"
|
||
|
}
|