From 7850d68dc21b7f86c7bd49f9cd48e4fac51e2d4d Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Tue, 29 Jan 2019 16:13:11 +0900 Subject: [PATCH] Prevent typescript errors from crashing --- gulpfile.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/gulpfile.ts b/gulpfile.ts index 08175914a..64ed04224 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -47,6 +47,7 @@ gulp.task('build:ts', () => { .src() .pipe(sourcemaps.init()) .pipe(tsProject()) + .on('error', () => {}) .pipe(sourcemaps.write('.', { includeContent: false, sourceRoot: '../built' })) .pipe(gulp.dest('./built/')); });