2022-08-24 23:37:26 +03:00
|
|
|
const path = require('path')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
includeVersion: true,
|
|
|
|
validation: {
|
|
|
|
notExported: true,
|
|
|
|
invalidLink: true,
|
2022-08-28 17:56:56 +03:00
|
|
|
notDocumented: true,
|
2022-08-24 23:37:26 +03:00
|
|
|
},
|
|
|
|
excludePrivate: true,
|
|
|
|
excludeExternals: true,
|
|
|
|
exclude: ['**/*/dist', '**/*/node_modules'],
|
|
|
|
plugin: [
|
|
|
|
path.join(__dirname, 'scripts/totally-great-typedoc-plugin.js'),
|
|
|
|
],
|
|
|
|
}
|