JSPM

typedoc

0.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3513860
  • Score
    100M100P100Q187647F

Create api documentations for typescript projects.

Package Exports

  • typedoc/bin/typedoc
  • typedoc/package.json

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (typedoc) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

TypeDoc

Create api documentations for typescript projects.

Installation

TypeDoc runs on Node.js and is available as an NPM package. You can install TypeDoc in your project's directory as usual:

$ npm install typedoc --save-dev

Like the TypeScript compiler, TypeDoc comes with a binary that can be called from anywhere if you install TypeDoc as a global module. The name of the executable is tsd.

$ npm install typedoc --global $ tsd

Usage

TypeDoc accepts most of the command line arguments that the TypeScript compiler accepts. One major difference is the fact that one may pass an entire directory instead of individual files to the documentation generator. So in order to create a documentation for an entire project you simply type:

$ tsd --out path\to\documentation\ path\to\typescript\project\