suika-docs-theme
v1.0.7
Published
A typedoc theme for Suika documentation.
Downloads
16
Readme
A typedoc theme for Suika documentation.
installation
To install the theme you can use a package manager like npm
yarn
or pnpm
npm i -D [email protected] suika-docs-theme@latest
Usage
To use the theme using the cli you can pass these arguments.
typedoc --plugin suika-docs-theme --theme my-theme
Or make a json config and pass the config path to the cli instead.
typedoc --options typedoc.json
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["./src/index.ts"],
"out": "docs",
"exclude": ["**/node_modules/**"],
"plugin": ["suika-docs-theme"],
"theme": "suika-theme"
}