Update some options for gulp-typescript 2.9.2.

This commit is contained in:
dreamair
2015-11-13 22:17:05 +01:00
parent efd40e67ff
commit f297bc50a4

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;
}
}