You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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% :).