I have the pdfjs-dist
dependency in my react app and it isn't working - I'm not sure what I changed to cause this. I'm running node v14.16.1
, npm v7.9.0
, react 17.0.2
, react-scripts 4.0.3
, and pdfjs-dist 2.7.570
. I'm getting the following error message when I run npm start
:
Failed to compile.
./node_modules/pdfjs-dist/build/pdf.js 2407:53
Module parse failed: Unexpected token (2407:53)
File was processed with these loaders:
* ./node_modules/babel-loader/lib/index.js
You may need an additional loader to handle the result of these loaders.
| intent: renderingIntent,
| renderInteractiveForms: renderInteractiveForms === true,
> annotationStorage: annotationStorage?.getAll() || null
| });
| }
I've tried uninstalling and reinstalling relevant packages, as well as npm update
, npm audit
, and so forth. I also tried adding the worker-loader
npm package but it's already a peer dependency on pdfjs-dist so it made no difference. My partner on this project has the same repo and he has no issues, so I'm sure it's something on my end. I believe it has to do with support for optional chaining, but not sure how to proceed.
Thanks!