mod1.js(6,24): error TS2339: Property 'e' does not exist on type '{}'.
mod2.js(6,8): error TS2339: Property 'e' does not exist on type '{}'.


==== mod2.js (1 errors) ====
    const mod1 = require("./mod1");
    mod1.a;
    mod1.b;
    mod1.c;
    mod1.d;
    mod1.d.e;
           ~
!!! error TS2339: Property 'e' does not exist on type '{}'.
    mod1.default;
==== mod1.js (1 errors) ====
    exports.a = { x: "x" };
    exports["b"] = { x: "x" };
    exports["default"] = { x: "x" };
    module.exports["c"] = { x: "x" };
    module["exports"]["d"] = {};
    module["exports"]["d"].e = 0;
                           ~
!!! error TS2339: Property 'e' does not exist on type '{}'.
    