Запитання 8
How would you structure a monorepo for scaling a React Native app to support multiple teams working on shared and mobile-specific code?
Варіанти відповідей
Use tools like Nx, Turborepo, or Lerna, organize code into modular packages (e.g., @app/mobile, @shared/ui), apply TypeScript project references, and use CI workflows targeting affected packages
Keep all code in a single large folder without division
Develop separate repositories without shared code
Use only JavaScript without TypeScript in a monolithic project