Alex Dyson
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:  --- I also ran into this issue when trying to form an intersection of very large types --...