Fedor

Results 6 comments of Fedor

Hi! Any updates on this? Facing the same issue as author

Same here, I have ~85 tables and Intellisense is suuuper slow in VS Code.

I was able to workaround this by patching [this](https://github.com/testinggospels/camouflage/blob/29a6bb35eaec80a52b64cd0ef061f7684718348a/src/index.ts#L174) line locally: ```js new Function(middlewareConfig).call({ require, app, logger: logger_1.default, allRoutes }); ``` and using `this.require` inside of my custom middleware

@shubhendumadhukar the snippet you provided works okay for me in case of importing `express`. But if I do ```js (async () => { const multer = await import("multer"); this.app.use(multer().any()); this.app.use("/",...

I figured it works if I do ```js (async () => { const multer = (await import('multer')).default; this.app.use(multer().any()); this.app.use("/", this.allRoutes); })(); ```

> Hi there! The image dimensions look roughly correct to me. I see that there's a one pixel difference - could you outline the problems it's causing for you? Hi...