`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?
nx g @nx/react:host host --remotes=shop,cartRunning 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=jsor--js=truedoesn't work.How to make the shop with TS and cart without TS? Is it supported?