Jose Miguel Colella

Results 12 comments of Jose Miguel Colella

I tried the following: ```typescript { provide: SOME_SYMBOL, useFactory: async () => { const sequelize = new Sequelize({ validateOnly: true }); sequelize.addModels([someModel, someModel2]); return sequelize; } } ``` when I...

@bduron I've been using tsconfig-paths in a production environment, and I have had no problems with this module. With regards to performance impact, I would minimal to none. I use...

@delner , would it be possible to wrap calls around things like ssl_connect method from ruby standard library?

I agree, currently all the badges in the project are broken. Has anyone found any solutions?

This is the PR that should get us almost all the way there: https://github.com/flavorjones/loofah/pull/284

@aphor Yeah, of course. Sounds like an opportunity to contribute back 👍

Having the same issue. @jwldnr Please share if you are able to fix it

@viglucci I'm using inversify on a server-side application. Webpack provides optimized builds that minimize as well as provides other features. I understand your point of using tsc, but I would...

To all, I've worked around this by using the exclude property in TerserPlugin to exclude controllers: ``` optimization: { minimizer: [ new TerserPlugin({ include: /\.ts($|\?)/i, exclude: /\.controller\.ts/i, parallel: true, sourceMap:...