forked from jupyterlab/lumino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedoc.js
36 lines (35 loc) · 904 Bytes
/
typedoc.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
35
36
/*
* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
module.exports = {
entryPoints: [
'packages/algorithm',
'packages/application',
'packages/collections',
'packages/commands',
'packages/coreutils',
'packages/datagrid',
'packages/disposable',
'packages/domutils',
'packages/dragdrop',
'packages/keyboard',
'packages/messaging',
'packages/polling',
'packages/properties',
'packages/signaling',
'packages/virtualdom',
'packages/widgets'
],
entryPointStrategy: 'packages',
includeVersion: false,
name: '@lumino',
out: 'docs/source/api',
readme: 'README.md',
navigationLinks: {
GitHub: 'https://github.com/jupyterlab/lumino',
Jupyter: 'https://jupyter.org'
},
titleLink: 'https://lumino.readthedocs.io/en/latest/',
plugin: ['typedoc-plugin-mdn-links']
};