I encountered an issue while trying to develop a plugable application. Everything was functioning correctly until I introduced "ngx-bootstrap" and "FullCalendarModule"/primeng in the plugin app. Importing any of these modules resulted in the following error:
ERROR Error: Uncaught (in promise): Error: Unable to dynamically transpile ES module
A loader plugin needs to be configured via `SystemJS.config({ transpiler: 'transpiler-module' })`.
Instantiating http://localhost:4200/assets/plugins/cms-plugin.bundle.js
Loading assets/plugins/cms-plugin.bundle.js
In the plugin app, I am using Rollup for packaging. Below is my rolupp.config.js file:
(Include your rollup config here)
...
This section pertains to the plugin app module:
(Include your app module configuration here)
...
Here's how I render the plugin in the main app:
(Include your rendering logic here)
...
Apologies for the abundance of details, but I wanted to provide clarity. I have also attempted to use Babel in both applications, but there were no noticeable changes.
Thank you!