2023-10-27 14:25:21 +03:00
|
|
|
module.exports = {
|
|
|
|
includeVersion: true,
|
|
|
|
validation: {
|
|
|
|
notExported: true,
|
|
|
|
invalidLink: false,
|
|
|
|
notDocumented: false,
|
|
|
|
},
|
|
|
|
excludePrivate: true,
|
|
|
|
excludeExternals: true,
|
|
|
|
excludeInternal: true,
|
|
|
|
exclude: [
|
|
|
|
'**/*/node_modules',
|
|
|
|
'./packages/tl/**/*',
|
|
|
|
],
|
2023-10-31 16:23:15 +03:00
|
|
|
externalPattern: ['**/dist/**'],
|
2023-10-27 14:25:21 +03:00
|
|
|
plugin: [
|
|
|
|
'./scripts/typedoc-external-links.cjs',
|
|
|
|
],
|
|
|
|
}
|