diff --git a/__mocks__/imageMock.ts b/__mocks__/imageMock.ts index 31effc071f..f80e118413 100644 --- a/__mocks__/imageMock.ts +++ b/__mocks__/imageMock.ts @@ -18,4 +18,5 @@ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -module.exports = {}; + +export default {}; diff --git a/src/main/proxy/index.ts b/src/main/proxy/index.ts index 66b0fb83e2..def9c80b5a 100644 --- a/src/main/proxy/index.ts +++ b/src/main/proxy/index.ts @@ -22,4 +22,4 @@ // Don't export the contents here // It will break the extension webpack -export const NoExportsToPreventBreakingWebpack: void = void 0; +export default {};