forked from viamrobotics/viam-typescript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedoc.config.cjs
41 lines (40 loc) · 860 Bytes
/
typedoc.config.cjs
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
35
36
37
38
39
40
41
'use strict';
/** @type {import('typedoc').TypeDocOptions} */
module.exports = {
entryPoints: ['./src/main.ts'],
out: 'docs/dist',
name: 'Viam SDK',
customCss: './docs/docs.css',
cname: 'ts.viam.dev',
disableSources: true,
exclude: ['e2e/**/*.spec.ts'],
// see: https://typedoc.org/options/organization/#kindsortorder
kindSortOrder: [
'Function',
'Project',
'Module',
'Enum',
'EnumMember',
'Class',
'Interface',
'TypeAlias',
'Constructor',
'Property',
'Variable',
'Accessor',
'Method',
'Parameter',
'TypeParameter',
'TypeLiteral',
'CallSignature',
'ConstructorSignature',
'IndexSignature',
'GetSignature',
'SetSignature',
'Reference',
'Namespace',
],
navigationLinks: {
GitHub: 'https://github.com/viamrobotics/viam-typescript-sdk',
},
};