How do I know my backend extension was loaded #14735
Answered
by
msujew
daleasberry-n
asked this question in
Q&A
-
I see my module.ts in /browser-app/src-gen/backend/server.js. I've fixed all the errors, but, I don't see any of the code in the extensions being executed. Am I missing something? |
Beta Was this translation helpful? Give feedback.
Answered by
msujew
Jan 16, 2025
Replies: 1 comment 3 replies
-
Hey @daleasberry-n, can you give a bit more info? Like some of your code or maybe even a reproducible example? Generally, the backend will print out the names of all loaded |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to actually bind the
Resolver
class as aBackendApplicationContribution
in your container module. Otherwise inversify has no idea that it's supposed to be one (interface definitions are deleted when compiling TypeScript to JavaScript):