I have a project that is currently built using create-react-app and I want to migrate it to Vite. It mostly works, however I'm completely stuck on making Inversify work. I constantly get this error message for every injectable dependency: Uncaught Error: Missing required @injectable annotation in: <insert service name here>
I have imported "reflect-metadata" everywhere, I have decorators and metadata turned on in TSConfig, but nothing seems to help, I'm at my wits end. Has anyone else made this work?
I have a suspicion that ESBuild might be handling decorators differently (if at all) then Babel