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:
@ -1,6 +1,6 @@
|
||||
// compiler benchmark in AngularJS 1.x
|
||||
import {getIntParameter, bindAction} from 'angular2/src/test_lib/benchmark_util';
|
||||
import angular = require("angular");
|
||||
declare var angular: any;
|
||||
|
||||
export function main() {
|
||||
var ngEl = document.createElement('div');
|
||||
@ -9,7 +9,7 @@ export function main() {
|
||||
|
||||
function loadTemplate(templateId, repeatCount) {
|
||||
var template = document.querySelectorAll(`#${templateId}`)[0];
|
||||
var content = template.innerHTML;
|
||||
var content = (<HTMLElement>template).innerHTML;
|
||||
var result = '';
|
||||
for (var i = 0; i < repeatCount; i++) {
|
||||
result += content;
|
||||
|
@ -3,7 +3,7 @@ import {
|
||||
getStringParameter,
|
||||
bindAction
|
||||
} from 'angular2/src/test_lib/benchmark_util';
|
||||
import angular = require("angular");
|
||||
declare var angular: any;
|
||||
|
||||
var totalRows = getIntParameter('rows');
|
||||
var totalColumns = getIntParameter('columns');
|
||||
|
@ -1,6 +1,6 @@
|
||||
// static tree benchmark in AngularJS 1.x
|
||||
import {getIntParameter, bindAction} from 'angular2/src/test_lib/benchmark_util';
|
||||
import angular = require("angular");
|
||||
declare var angular: any;
|
||||
|
||||
const MAX_DEPTH = 10;
|
||||
|
||||
|
2
modules/benchmarks_external/src/tree/react/react.min.d.ts
vendored
Normal file
2
modules/benchmarks_external/src/tree/react/react.min.d.ts
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
declare var React: any;
|
||||
export default React;
|
@ -1,6 +1,6 @@
|
||||
// tree benchmark in AngularJS 1.x
|
||||
import {getIntParameter, bindAction} from 'angular2/src/test_lib/benchmark_util';
|
||||
import angular = require("angular");
|
||||
declare var angular: any;
|
||||
|
||||
export function main() {
|
||||
angular.bootstrap(document.querySelector('tree'), ['app']);
|
||||
|
Reference in New Issue
Block a user