2018-04-23 11:07:31 +02:00
|
|
|
module.exports = {
|
2025-11-19 17:46:48 +01:00
|
|
|
lib: ['lib.dom.d.ts', 'lib.es5.d.ts', 'lib.es2015.promise.d.ts', 'lib.scripthost.d.ts'],
|
|
|
|
|
mode: 'file',
|
|
|
|
|
module: 'commonjs',
|
|
|
|
|
name: 'OpenVidu Node Client',
|
|
|
|
|
target: 'es5',
|
|
|
|
|
externalPattern: 'node_modules',
|
2018-04-23 11:07:31 +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,
|
2025-11-19 17:46:48 +01:00
|
|
|
theme: 'default',
|
|
|
|
|
readme: 'none',
|
2020-04-05 20:03:46 +02:00
|
|
|
includeVersion: true,
|
|
|
|
|
listInvalidSymbolLinks: true,
|
2025-11-19 17:46:48 +01:00
|
|
|
out: './docs'
|
|
|
|
|
};
|