when updating webpack from 4 to 5, I got the error:
TypeError: message.split is not a function
which is thrown in react-dev-utils/formatWebpackMessages.js
.
Then I update react-dev-utils
to then @next
version which fix this.
However in the @next
version, there are no WatchMissingNodeModulesPlugin
and typescriptFormatter
in react-dev-utils
, and they are used in my webpack.config.js
file which is working with webpack4
.
How can I fix this or do I need these two utils in my typescript project?
Can anyone give me a template of webpack.config.js
for a typescript project using webpack5?