-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathtypedoc.js
More file actions
26 lines (26 loc) · 626 Bytes
/
typedoc.js
File metadata and controls
26 lines (26 loc) · 626 Bytes
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
module.exports = {
out: './docs/',
readme: 'README.md',
name: 'Sentry JavaScript SDKs',
includes: './',
exclude: [
'**/test/**/*',
'**/*.js',
'**/cjs/**/*',
'**/esm/**/*',
'**/build/**/*',
'**/packages/typescript/**/*',
'**/packages/eslint-*/**/*',
],
mode: 'modules',
excludeExternals: true,
includeDeclarations: true,
includeVersion: true,
excludeNotExported: true,
excludePrivate: true,
// Turned on as @sentry/angular uses decorators
experimentalDecorators: true,
// Turned on for @sentry/react
jsx: 'react',
'external-modulemap': '.*/packages/([^/]+)/.*',
};