microsoft / tsdoc

A doc comment standard for TypeScript
https://tsdoc.org/
MIT License
4.71k stars 131 forks source link

Add a missing .d.ts file #273

Closed octogonz closed 3 years ago

octogonz commented 3 years ago

API Extractor uses a path-based import to access the "beta" API:

import {
  DeclarationReference
} from '@microsoft/tsdoc/lib-commonjs/beta/DeclarationReference';

This stopped working when we switched to Heft, because the .d.ts file is not emitted in that folder.

This PR is a temporary workaround until we find a better fix.