Merge pull request #7052 from dreamair/master

Update some options for gulp-typescript 2.9.2.
This commit is contained in:
Masahiro Wakame
2015-12-10 21:48:28 +09:00
+13 -2
View File
@@ -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;
}
}