Skip to content

Commit

Permalink
(Docs) Correct responses
Browse files Browse the repository at this point in the history
  • Loading branch information
realinstadude authored Aug 5, 2019
1 parent 6934c43 commit 8799975
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tools/docs-generator.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
const TypeDoc = require('typedoc');

const app = new TypeDoc.Application({
module: 'none',
experimentalDecorators: true,
ignoreCompilerErrors: true,
logger: 'none',
Expand All @@ -10,8 +9,11 @@ const app = new TypeDoc.Application({
excludePrivate: true,
excludeProtected: true,
excludeNotExported: true,
target: 'ES6',
tsconfig: './tsconfig.js'
});

const project = app.convert(app.expandInputFiles(['src']));

if (project) app.generateDocs(project, 'docs');
if (project)
app.generateDocs(project, 'docs');

0 comments on commit 8799975

Please sign in to comment.