axios.js(2,1): error TS2309: An export assignment cannot be used in a module with other exported elements.
axios.js(3,16): error TS2339: Property 'default' does not exist on type '{}'.


==== axios.js (2 errors) ====
    var axios = {}
    module.exports = axios // both assignments should be ok
    ~~~~~~~~~~~~~~~~~~~~~~
!!! error TS2309: An export assignment cannot be used in a module with other exported elements.
    module.exports.default = axios
                   ~~~~~~~
!!! error TS2339: Property 'default' does not exist on type '{}'.
    