mtcute/typedoc.js
teidesu 390b65f796 build(docs): api reference generation improvements
- added readme in each package
- updated typedoc, fixed related issues
- use @link instead of @see
- moved configs to typedoc.js, improved exclusion of unneeded stuff
- custom plugin for typedoc for cross-package references
- preparing to move documentation to separate repository
2022-08-24 23:37:26 +03:00

17 lines
418 B
JavaScript

const path = require('path')
module.exports = {
includeVersion: true,
validation: {
notExported: true,
invalidLink: true,
notDocumented: false,
},
excludePrivate: true,
excludeExternals: true,
exclude: ['**/*/dist', '**/*/node_modules'],
plugin: [
'typedoc-plugin-coverage',
path.join(__dirname, 'scripts/totally-great-typedoc-plugin.js'),
],
}