forked from jupyterlab/jupyterlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedoc.js
36 lines (32 loc) · 864 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
// const git = require('git-rev-sync');
module.exports = {
exclude: [
// '^((?!index\.ts).)*$',
// '^((?!index\.tsx).)*$',
// '**/*+(__tests__|internal|lib|node_modules|demos)/**/*',
'.history',
'**/.storybook',
'**/babel.config.js',
'**/*.spec.ts*',
'**/*.stories.ts*',
'**/buildutils/**',
'**/docs/source/**',
'**/examples/**',
// '**/lib/**',
'**/node_modules/**',
'**/test/**',
'**/tests/**',
'**/testutils/**',
'**/packages/metapackage/**'
],
excludeNotExported: true,
ignoreCompilerErrors: false,
mode: 'library',
name: '@jupyterlab',
out: 'docs/api',
readme: 'README.md',
theme: 'typedoc-theme',
tsconfig: 'tsconfigdoc.json'
// gitRevision: 'master',
// 'sourcefile-url-prefix': `https://github.com/sinnerschrader/feature-hub/tree/${git.short()}/packages/`,
};