react-module-federation
react-module-federation copied to clipboard
[Question] How to generate module federation apps without typescript?
nx g @nx/react:host host --remotes=shop,cart
Running this command generates host, shop, and cart having typescript enabled in their codebase by default.
-
How to opt out of ts while running the command? Passing
--preset=js
or--js=true
doesn't work. -
How to make the shop with TS and cart without TS? Is it supported?