[SOLVED] error TS1192: Module '" A.module"' has no default export

Issue

I have created a new module ‘A’ and trying to import it in another module called ‘B’. I am getting this error on compiling that says

error TS1192: Module ‘" A.module"’ has no default export

Can anyone please help on how to solve this error.

Solution

This was a simple error. It occurred due to the missing {} around the module name in the import statement itself. Since this killed 2-3 hours of my time, sharing with you all so you won’t waste yours. Hope this can help someone.
Cheers,
Abhi.

Answered By – Abhi

Answer Checked By – Pedro (BugsFixing Volunteer)

Leave a Reply

Your email address will not be published. Required fields are marked *