Code Monkey home page Code Monkey logo

Comments (2)

resthedev avatar resthedev commented on June 18, 2024 3

I started randomly getting these errors in my library.

NextJS, as well as the compiler.

It may be in one of the builders. It makes no sense, and it is very random. I'll have no errors, and then suddenly, I'll get things like the below example. The code is crazy simple. It might not be something the library here can "fix"


The requested module './VerifyEmailForm' contains conflicting star exports for the names '$$typeof', '__esModule' with the previous requested module './SignInEmailForm'



Import trace for requested module:

../../libs/client/components/src/forms/index.ts

../../libs/client/components/src/index.ts

./app/(withNavBar)/page.tsx



../../libs/client/components/src/index.ts

The requested module './forms' contains conflicting star exports for the names '$$typeof', '__esModule' with the previous requested module './marketing'



Import trace for requested module:

../../libs/client/components/src/index.ts

./app/(withNavBar)/page.tsx

Yeah it's unfortunate that it's happening. Seems like React components are exporting these default variables like __esmodule and $$typeof. These then conflict with each other when you do the * star exports cause the index.ts file will try to export these variables of the same name.

I get the error if I do

export * from "./ComponentA"; 
export * from "./ComponentB"; 

//error because both components have the __esmodule and $$type of variables tacked on by default and are being exported 

So instead, I've been doing:

export { ComponentA }from "./ComponentA"; 
export { ComponentB } from "./ComponentB"; 

Only inconvenience would be that if you have variables or others you want to export from the component, then you'd have to manually specify those one by one.

from bulletproof-react.

Brian-McBride avatar Brian-McBride commented on June 18, 2024

I started randomly getting these errors in my library.
NextJS, as well as the compiler.

It may be in one of the builders. It makes no sense, and it is very random. I'll have no errors, and then suddenly, I'll get things like the below example. The code is crazy simple. It might not be something the library here can "fix"

The requested module './VerifyEmailForm' contains conflicting star exports for the names '$$typeof', '__esModule' with the previous requested module './SignInEmailForm'

Import trace for requested module:
../../libs/client/components/src/forms/index.ts
../../libs/client/components/src/index.ts
./app/(withNavBar)/page.tsx

../../libs/client/components/src/index.ts
The requested module './forms' contains conflicting star exports for the names '$$typeof', '__esModule' with the previous requested module './marketing'

Import trace for requested module:
../../libs/client/components/src/index.ts
./app/(withNavBar)/page.tsx

from bulletproof-react.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.