Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 621 Bytes

quick-start.mdx

File metadata and controls

40 lines (29 loc) · 621 Bytes

import { Callout, Steps } from 'nextra/components';

Quick Start

For general TypeDoc usage please refer to https://typedoc.org.

Installation

npm install typedoc typedoc-plugin-markdown@next --save-dev

Usage

Plugins are loaded by using the TypeDoc plugin configuration option:

typedoc --plugin typedoc-plugin-markdown --out ./docs

Or:

{
  "plugin": ["typedoc-plugin-markdown"],
  "out": "./docs"
}
{
  "docs": "typedoc"
}
npm run docs