7b7fdc7092
it works like shit
16 lines
382 B
JavaScript
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'),
|
|
],
|
|
}
|