File: typedoc.js

package info (click to toggle)
node-quickjs-emscripten 0.23.0%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 7,900 kB
  • sloc: ansic: 71,457; javascript: 7,638; makefile: 506; sh: 153
file content (22 lines) | stat: -rw-r--r-- 635 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const name = require("./package.json").name
const NO_THANKS = ["**/node_modules/**", "./quickjs/**"]

module.exports = {
  // disable package version in doc headers
  name,
  entryPoints: ["./ts/index.ts"],
  entryPointStrategy: "expand",
  // link to main instead of the current git SHA
  // which is borked with our strategy of deploying the docs
  // in the repo.
  gitRevision: "main",
  out: "./doc",
  // mode: 'file',
  exclude: NO_THANKS,
  externalPattern: NO_THANKS[0],
  // excludeNotExported: true,
  excludePrivate: true,
  categorizeByGroup: true,
  listInvalidSymbolLinks: true,
  plugin: ["typedoc-plugin-markdown"],
}