Problem is the memory limit during client side app build step in pipelines
Here is the screen
The problem located in front end module - common lib
We solved the problem by removing new export from the lib - it is 43 line of export.
common/src/index.tsx now has 42 line of code and every line it's a export of smaller module

Before we figure out it, we tried to increase memory limit, but we were understand that the reason in source code, not in memory limit, at the same time after increase memory limit the build were failed.
Now we thinking about adding this common lib into separate step of build and build the lib as a remote app with needed exposed modules (in front end module federation terms).
The question is about this possible solution - Is it proper way of solving the problem or might you can give others ideas, suggestions
Thanks in advanced!