mtcute/typedoc.js

18 lines
418 B
JavaScript
Raw Normal View History

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'),
],
}