You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With Typescript 5.8's erasableSyntaxOnly flag and with Node's type stripping support, it looks like they're pushing us away from from using TS only language features (enum, namespaces, etc) We heavily rely on the enums as generated objects for typesafety everywhere.
Would love to be able to just generate the object version of these enums in the generated output.
Tried with that template but can't make it works, the generate process don't use it at all ... others templates are used correctly but this one not.
<%const { contract, utils, config } = it;const { formatDescription, require, _ } = utils;const { name, $content } = contract;%><%_constenumName=name.toUpperCase();constenumValues=Object.entries($content);_%><%if (config.generateUnionEnums) { %>exporttype<%~name%>=<%~_.map($content, ({ value }) =>value).join(" | ") %><% } else { %>exportconst <%= enumName %>: { [key: string]: string } = {<%_ enumValues.forEach(([key, value]) => { _%><%= key %>:'<%= value %>',<%_ }); _%> } as const;// export type name = ObjectValues<typeof enumName>; // didn't make it to the step of generating actual type from that const but that the goal.<% } %>
Also tried with
codeGenConstructs: (struct)=>{return{
...struct,EnumField: ... //Can't figure out how to modify that as the doc seems not up to date};},
With Typescript 5.8's
erasableSyntaxOnly
flag and with Node's type stripping support, it looks like they're pushing us away from from using TS only language features (enum, namespaces, etc) We heavily rely on the enums as generated objects for typesafety everywhere.Would love to be able to just generate the object version of these enums in the generated output.
(I did try with templates, but was unsuccessful)
References
The text was updated successfully, but these errors were encountered: