mirror of
https://github.com/openpgpjs/openpgpjs.git
synced 2025-11-23 22:15:52 +00:00
25 lines
568 B
JavaScript
25 lines
568 B
JavaScript
const pkg = require('./package.json');
|
|
|
|
module.exports = {
|
|
plugins: [
|
|
'plugins/markdown',
|
|
'node_modules/better-docs/typedef-import',
|
|
'node_modules/better-docs/typescript'
|
|
],
|
|
markdown: {
|
|
idInHeadings: true
|
|
},
|
|
templates: {
|
|
default: {
|
|
includeDate: false,
|
|
outputSourceFiles: false,
|
|
externalSourceLinks: {
|
|
urlPrefix: `${pkg.repository.url}/blob/v${pkg.version}/src/`
|
|
}
|
|
}
|
|
},
|
|
source: {
|
|
includePattern: "\\.(js|ts)$",
|
|
},
|
|
};
|