panorama/typedoc.config.cjs

13 lines
261 B
JavaScript
Raw Normal View History

2023-04-18 08:05:36 +00:00
/** @type {import('typedoc').TypeDocOptions} */
module.exports = {
entryPoints: [
"./src/api.d.ts",
"./src/index.ts",
"./node_modules/.prisma/client/index.d.ts",
],
out: "typedoc",
excludeExternals: false,
excludeNotDocumented: false,
};