1.1.0 • Published 8 months ago

@wesp-up/typedoc-config v1.1.0

Weekly downloads
-
License
-
Repository
github
Last release
8 months ago

@wesp-up/typedoc-config

This project maintains base TypeDoc config files for TypeScript projects that use TSDoc comments. This package provides a convenience of not having to copy and paste the same configs for every new project, providing consistency in documentation style.

Installation

npm install --save-dev @wesp-up/typedoc-config

Usage

Extend the config file in your typedoc.json. For example:

{
  "$schema": "https://typedoc.org/schema.json",
  "extends": ["node_modules/@wesp-up/typedoc-config/typedoc.json"],
  "entryPoints": ["src/index.ts"],
  "out": "docs"
}

If you are using npm workspaces, the node_modules folder is at the root of the project (e.g. "extends": ["../../node_modules/@wesp-up/typedoc-config/typedoc.json"]).

Note: All configuration options that use relative paths, such as entryPoints and out, etc. are relative to the location of the typedoc config file itself. Therefore, the package configs do not provide those configuration options. They must be configured by the consuming project itself.

1.1.0

8 months ago

1.0.0

2 years ago