123456789101112131415161718192021222324252627282930313233343536 |
- module.exports = {
- exclude: [
-
-
-
- '.history',
- '**/.storybook',
- '**/babel.config.js',
- '**/*.spec.ts*',
- '**/*.stories.ts*',
- '**/buildutils/**',
- '**/docs/source/**',
- '**/examples/**',
-
- '**/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'
-
-
- };
|