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
7 lines
270 B
TypeScript
7 lines
270 B
TypeScript
require('reflect-metadata');
|
|
require('traceur/bin/traceur-runtime');
|
|
module.exports = require('./benchpress.js');
|
|
// when bundling benchpress to one file, this is used
|
|
// for getting exports out of browserify's scope.
|
|
(<any>global).__benchpressExports = module.exports;
|