15 lines
402 B
JavaScript
15 lines
402 B
JavaScript
|
const fs = require('fs')
|
||
|
const path = require('path')
|
||
|
|
||
|
module.exports = {
|
||
|
...require('./typedoc.base.cjs'),
|
||
|
name: 'mtcute',
|
||
|
out: './docs',
|
||
|
entryPoints: fs
|
||
|
.readdirSync(path.join(__dirname, 'packages'))
|
||
|
.filter((it) => !['crypto', 'tl', 'create-bot'].includes(it))
|
||
|
.map((it) => `packages/${it}`),
|
||
|
entryPointStrategy: 'packages',
|
||
|
// logLevel: 'Verbose',
|
||
|
}
|