-
Hi @Romakita, I'm having trouble working with the CLI to generate swagger ( The issue came from I have some local modules, in the same pnpm monorepo, and import My code using webpack/ts-loader to bundle and run the app, and I'm asking if anything I can do to make this work? Thanks in advanced. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Cli isn’t commletely compatible with ESM. CLI use the server to load controllers and generate swagger.json I haven’t idea to help you this point. On my project it works because we don’t import oidc-provider using esm import but by lazy loading it. |
Beta Was this translation helpful? Give feedback.
Cli isn’t commletely compatible with ESM. CLI use the server to load controllers and generate swagger.json
I haven’t idea to help you this point. On my project it works because we don’t import oidc-provider using esm import but by lazy loading it.