-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedoc.config.js
34 lines (34 loc) · 945 Bytes
/
typedoc.config.js
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
27
28
29
30
31
32
33
34
const pkg = require('./package.json');
/** @type {import('typedoc').TypeDocOptions} */
module.exports = {
$schema: 'https://typedoc.org/schema.json',
name: pkg.name.toUpperCase(),
includeVersion: true,
titleLink: pkg.repository.url.replace(/^git\+/, ''),
entryPoints: [
'src/lsfnd.ts',
'src/lsTypes.ts',
'types/index.d.ts',
'types/build.prop.d.ts'
],
out: `./docs`,
readme: './README.md',
tsconfig: './tsconfig.json',
plugin: [ 'typedoc-material-theme', 'typedoc-plugin-extras' ],
themeColor: '#2230f2',
cacheBust: true,
footerTypedocVersion: true,
footerLastModified: true,
lightHighlightTheme: 'github-light',
darkHighlightTheme: 'material-theme-ocean',
sort: true,
useTsLinkResolution: true,
gitRemote: 'origin',
navigationLinks: {
'GitHub': pkg.repository.url.replace(/^git\+/, '')
},
sidebarLinks: {
'Report any issues': pkg.bugs.url + '/new'
},
logLevel: 'Verbose'
};