From f297bc50a4310c58bde65a6de686ab840dbee3e3 Mon Sep 17 00:00:00 2001 From: dreamair Date: Fri, 13 Nov 2015 22:17:05 +0100 Subject: [PATCH] Update some options for gulp-typescript 2.9.2. --- gulp-typescript/gulp-typescript.d.ts | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/gulp-typescript/gulp-typescript.d.ts b/gulp-typescript/gulp-typescript.d.ts index 7b16d0a5a..f85245a30 100644 --- a/gulp-typescript/gulp-typescript.d.ts +++ b/gulp-typescript/gulp-typescript.d.ts @@ -20,10 +20,21 @@ declare module "gulp-typescript" { noImplicitAny?: boolean; noLib?: boolean; removeComments?: boolean; - sourceRoot?: string; + sourceRoot?: string; // use gulp-sourcemaps instead sortOutput?: boolean; target?: string; typescript?: any; + outFile?: string; + outDir?: string; + suppressImplicitAnyIndexErrors?: boolean; + jsx?: string; + declaration?: boolean; + emitDecoratorMetadata?: boolean; + experimentalAsyncFunctions?: boolean; + moduleResolution?: string; + noEmitHelpers?: boolean; + preserveConstEnums?: boolean; + isolatedModules?: boolean; } interface Project { @@ -51,4 +62,4 @@ declare module "gulp-typescript" { } export = GulpTypescript; -} \ No newline at end of file +}