Alex Dyson

Results 5 comments of Alex Dyson

The change @orszaczky proposed worked for me as well. Using angular 1.3 by the way.

Any chance we could get a roadmap at some point? Appreciate the work by the way 😃

Potential Inspiration and temp fix for those looking: https://github.com/ferdikoomen/openapi-typescript-codegen#enums-vs-union-types---useuniontypes Does require you to build a second set of types 😞

Partial solution: ``` const parameters = { jsx: { onBeforeRender: (domStr: string) => /content: (.*)/.exec(domStr)?.[1] || domStr, }, }; ``` We lose some formatting still though 😞 ie, `maxInlineAttributesLineLength` isn't...

For VSCode, make sure you're using your workspace version of Typescript: ![image](https://user-images.githubusercontent.com/5612248/229863620-9f390567-187b-49d8-834a-b824d801a34e.png) --- I also ran into this issue when trying to form an intersection of very large types --...