mtcute/typedoc.js
2022-08-28 17:56:56 +03:00

16 lines
382 B
JavaScript

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