We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code from the website should work:
const TypeDoc = require('typedoc'); const app = new TypeDoc.Application({ mode: 'Modules', logger: 'none', target: 'ES5', module: 'CommonJS', experimentalDecorators: true }); app.options.addReader(new TypeDoc.TypeDocReader()); app.options.addReader(new TypeDoc.TSConfigReader()); app.bootstrap(); const project = app.convert(app.expandInputFiles(['src'])); if (project) { // Project may not have converted correctly const outputDir = 'docs'; // Rendered docs app.generateDocs(project, outputDir); // Alternatively generate JSON output app.generateJson(project, outputDir + '/documentation.json'); }
Crash - TypeDocReader and TSConfigReader are not exported
TypeDocReader
TSConfigReader
The text was updated successfully, but these errors were encountered:
Of course I found this only after publishing :/
Fixed in 0.16.1
Sorry, something went wrong.
7cf73da
No branches or pull requests
Expected Behavior
The following code from the website should work:
Actual Behavior
Crash -
TypeDocReader
andTSConfigReader
are not exportedEnvironment
The text was updated successfully, but these errors were encountered: