Alexey Frolovsky

Results 11 comments of Alexey Frolovsky

Hello @ZXYT! Can you attach a schema? Interesting case

@inomn try to rename "swagger" field to "openapi" ``` spec: { // @ts-expect-error wrong library types for spec field with openapi 3 openapi: "3.0.0", // ... } ``` Looks like...

@TianyuKang Hi! If you are satisfied with having several clients, I can share my solution. We have several schemes and we perform generation for each of them. 1) We create...

It could potentially be improved so that the library accepts several sources at the same time, but there are some nuances there. You can solve the problem yourself by writing...

@js2me Hi! If I make changes that add an option for parsing, when passed, nested objects will be separated into a separate type, will you look at it? I see...

@Diokuz Hi! if this causes any problems, you can use the "overrides" field as a workaround inside package.json. ``` "overrides": { "swagger-typescript-api": { "typescript": "^5.1.6" } } ``` Given the...

If you using `@module-federation/enhanced` you can try `@module-federation/vite` See example: webpack + vite: https://github.com/module-federation/vite/tree/main/examples/vite-webpack-rspack Maybe you should play with the [`from`](https://github.com/originjs/vite-plugin-federation?tab=readme-ov-file#from--vitewebpack) settings – but I don't think it will help...

@kehuay Thank you for reporting this issue! After reviewing your case, I’ve been able to identify the cause of the problem. Here’s an explanation: **1. This is not a bug...