chore(build): enable type-checking for TypeScript ES6 emit.

This requires delicate handling of type definitions which collide, because
we use TypeScript-provided lib.d.ts for --target=es5 and lib.es6.d.ts for
--target=es6.
We need to include our polyfill typings only in the --target=es5 case,
and the usages have to be consistent with lib.es6.d.ts.
Also starting with this change we now typecheck additional modules,
so this fixes a bunch of wrong typings which were never checked before.

Fixes #3178
This commit is contained in:
Alex Eagle
2015-08-06 09:52:33 -07:00
parent 40a3cd2ab1
commit 643c71740e
35 changed files with 88 additions and 83 deletions

View File

@ -260,7 +260,7 @@ export class MdGridTile {
}
set rowspan(value) {
this._rowspan = isString(value) ? NumberWrapper.parseInt(value, 10) : <number>value;
this._rowspan = isString(value) ? NumberWrapper.parseInt(<any>value, 10) : <number>value;
}
get rowspan() {
@ -268,7 +268,7 @@ export class MdGridTile {
}
set colspan(value) {
this._colspan = isString(value) ? NumberWrapper.parseInt(value, 10) : <number>value;
this._colspan = isString(value) ? NumberWrapper.parseInt(<any>value, 10) : <number>value;
}
get colspan() {

View File

@ -49,7 +49,8 @@ export class MdInputContainer {
// classes based on the input state.
ObservableWrapper.subscribe(input.mdChange, value => { this.inputHasValue = value != ''; });
ObservableWrapper.subscribe(input.mdFocusChange, hasFocus => {this.inputHasFocus = hasFocus});
ObservableWrapper.subscribe<boolean>(input.mdFocusChange,
hasFocus => this.inputHasFocus = hasFocus);
}
}