mirror of
https://github.com/sequelize/sequelize.git
synced 2025-12-08 20:59:22 +00:00
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Alyx <zoe@ephys.dev>
11 lines
470 B
JavaScript
11 lines
470 B
JavaScript
module.exports = {
|
|
entryPointStrategy: 'packages',
|
|
// Note: packages/postgres cannot be included until https://github.com/TypeStrong/typedoc/issues/2467 is fixed
|
|
entryPoints: ['packages/core', 'packages/utils', 'packages/validator-js'],
|
|
out: './.typedoc-build',
|
|
readme: 'none',
|
|
plugin: ['typedoc-plugin-missing-exports', 'typedoc-plugin-mdn-links'],
|
|
treatWarningsAsErrors: true,
|
|
highlightLanguages: ['typescript', 'sql', 'javascript', 'shellscript'],
|
|
};
|