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

22 lines
470 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',
'./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',
],
}