build(broccoli): AngularBuilder compiles with TypeScript 1.8+.

Beginning with 1.8, if a modules has both a .ts and .d.ts file, the .js
file is not written.

Closes #7947
This commit is contained in:
Chuck Jazdzewski
2016-04-07 10:14:38 -07:00
parent a596b887ff
commit 85c1927993
3 changed files with 7 additions and 6 deletions

View File

@ -17,6 +17,12 @@ export type Options = {
useBundles: boolean;
};
export interface AngularBuilderOptions {
outputPath: string;
dartSDK?: any;
logs?: any;
}
/**
* BroccoliBuilder facade for all of our build pipelines.
*/