#!/bin/bash

typedoc --name "TigerBridge v${npm_package_version}" \
  --mode file \
  --out ./dist/docs \
  --module umd\
  --tsconfig ./tsconfig.json \
  --target ES6 \
  --theme ./doctheme \
  --includeDeclarations \
  --excludeExternals  \
  --ignoreCompilerErrors  \
  --hideGenerator \
  src/**/*.ts ./typings.d.ts
