This can be fixed by changing const ErrorHandler = require('./middleware/ErrorHandler'); to const ErrorHandler = module.exports = ErrorHandler. You seem to have mixed up Common.js exports and ES exports.
const ErrorHandler = require('./middleware/ErrorHandler');
const ErrorHandler = module.exports = ErrorHandler