390b65f796
- 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
17 lines
418 B
JavaScript
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'),
|
|
],
|
|
}
|