I have this case
import(./extensions/${extension}.tsx)
in the extensions folders I have:
extensions/Test.tsx
extensions/subfolder/Test1.tsx
the plugin consider only a files in extensions folder.
Webpack instead consider also all subfolders with the same dynamic import.
How can configure the plugin for have the same webpack beaviour?
Thanks