Problemas de instalación

He instalado la librería @uppy/core^3.7.1 @uppy/dashboard @uppy/react pero cuando voy a ejecutar la aplicación, me dan errores al compilar en los archivos de la librería @uppy/utils/lib/getDroppedFiles/index.js como puede ser Unexpected reserved word del await en la función: export default async function getDroppedFiles(dataTransfer, options) {
var _options$logDropError;
// Get all files from all subdirs. Works (at least) in Chrome, Mozilla, and Safari
const logDropError = (_options$logDropError = options == null ? void 0 : options.logDropError) != null ? _options$logDropError : Function.prototype;
try {
const accumulator = ;
for await (const file of webkitGetAsEntryApi(dataTransfer, logDropError)) {
accumulator.push(file);
}
return accumulator;
// Otherwise just return all first-order files
} catch {
return fallbackApi(dataTransfer);
}
}