-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathtypedoc.config.js
More file actions
26 lines (26 loc) · 853 Bytes
/
typedoc.config.js
File metadata and controls
26 lines (26 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/** @type {import('typedoc').TypeDocOptions} */
module.exports = {
entryPoints: ['src/index.tsx'],
tsconfig: 'tsconfig.build.json',
out: 'api',
sitemapBaseUrl: 'https://theoplayer.github.io/react-native-theoplayer/api/',
name: 'React Native THEOplayer SDK',
readme: 'none',
plugin: ['typedoc-plugin-external-resolver', 'typedoc-plugin-mdn-links', './lib/module/plugins/typedoc-platform-icons/src/index.js'],
navigationLinks: {
Docs: 'https://www.theoplayer.com/docs/',
'THEOplayer.com': 'https://www.theoplayer.com/',
},
navigation: {
includeCategories: true
},
githubPages: true,
excludePrivate: true,
excludeExternals: true,
externalDocumentation: {
theoplayer: {
dtsPath: '~/THEOplayer.d.ts',
externalBaseURL: 'https://www.theoplayer.com/docs/theoplayer/v10/api-reference/web',
},
}
};