mtcute/.config/typedoc/config.base.cjs

23 lines
504 B
JavaScript
Raw Normal View History

module.exports = {
includeVersion: true,
validation: {
notExported: true,
invalidLink: false,
notDocumented: false,
},
excludePrivate: true,
excludeExternals: true,
excludeInternal: true,
exclude: [
'**/*/node_modules',
2023-11-27 06:39:25 +03:00
'../../packages/tl/**/*',
'**/*.test.ts',
'**/*.test-utils.ts',
],
2023-10-31 16:23:15 +03:00
externalPattern: ['**/dist/**'],
plugin: [
2023-11-13 13:24:42 +03:00
'./plugin-external-links.cjs',
2023-11-16 02:41:48 +03:00
'./plugin-umami.cjs',
],
}