Skip to content

Commit

Permalink
release 5.23.1
Browse files Browse the repository at this point in the history
  • Loading branch information
saqqdy committed Jan 17, 2025
1 parent dc4de44 commit 5430bc2
Showing 1 changed file with 27 additions and 4 deletions.
31 changes: 27 additions & 4 deletions typedoc.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,35 @@
module.exports = {
/** @type {Partial<import("typedoc").TypeDocOptions>} */
const config = {
out: 'docs',
entryPoints: ['src/index.ts'],
entryPoints: ['./src'],
json: 'docs/out.json',
name: 'index.md',
name: 'JS-COOL DOCS',
includeVersion: true,
readme: 'README.md'
readme: 'README.md',
sort: ['source-order'],
categorizeByGroup: false,
searchCategoryBoosts: {
Component: 2,
Model: 1.2
},
searchGroupBoosts: {
Classes: 1.5
},
hostedBaseUrl: 'https://www.saqqdy.com/js-cool/',
navigationLinks: {
Docs: 'https://www.saqqdy.com/js-cool/',
GitHub: 'https://github.com/saqqdy/js-cool',
CHANGELOG: 'https://github.com/saqqdy/js-cool/blob/master/CHANGELOG.md'
},
// highlightLanguages: ['typescript', 'tsx', 'css', 'json', 'jsonc', 'python', 'yaml', 'markdown'],
markdownItOptions: {
html: true
},
suppressCommentWarningsInDeclarationFiles: true
// emit: true,
// exclude: '',
// externalPattern: '',
// excludeExternals: ''
}

module.exports = config

0 comments on commit 5430bc2

Please sign in to comment.