Skip to content

Commit

Permalink
chore: add gulpfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jkuri committed Dec 25, 2016
1 parent 8fc1ad9 commit 7eaf817
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
const gulp = require('gulp');
const typedoc = require('gulp-typedoc');

gulp.task('docs', () => {
return gulp.src([
'index.ts',
'!node_modules/**/*'])
.pipe(typedoc({
name: 'ng2-uploader docs',
mode: 'file',
out: 'docs',
ignoreCompilerErrors: true,
experimentalDecorators: true,
emitDecoratorMetadata: true,
target: 'ES5',
moduleResolution: 'node',
preserveConstEnums: true,
stripInternal: true,
suppressExcessPropertyErrors: true,
suppressImplicitAnyIndexErrors: true,
module: 'commonjs',
ignoreCompilerErrors: true,
noLib: true
}));
});

0 comments on commit 7eaf817

Please sign in to comment.