this function generates code documentation of your deno-project, using typedoc.
this function first reads your "deno.json" file to generate an equivalent "package.json" and "tsconfig.json" files, and then it runs typedoc to generate the documentation html site.
take a look at BuildDocsConfig to see what configuration options are available.
moreover, to use this transformer via cli, use the ./cli/docs.ts script file (or jsr:@oazmi/build-tools/cli/docs if using jsr), and take a look at its CliArgs for list of supported cli args.
this function generates code documentation of your deno-project, using
typedoc
. this function first reads your "deno.json" file to generate an equivalent "package.json" and "tsconfig.json" files, and then it runstypedoc
to generate the documentation html site.take a look at BuildDocsConfig to see what configuration options are available.
moreover, to use this transformer via cli, use the
./cli/docs.ts
script file (orjsr:@oazmi/build-tools/cli/docs
if using jsr), and take a look at its CliArgs for list of supported cli args.