Closed as not planned
Description
I'm trying to achieve 100% code coverage and the function:
function __export(m) {
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
}
is added in every file that does something like export * from './blah'
.
Can that code be controlled by the compilerOptions.emitEmitHelpers
flag? Then it can be added to https://github.com/ngParty/ts-helpers and code coverage can go to 100% :).
I'm using https://github.com/hapijs/lab and it reports this: