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
I'd like you to implement an option for an alternate to the current syntax generated for the main parameter. This is what I would like it to look like:
If you were to do that (and with the more complete fix here), i will be able to automatically generate the Aurelia type definition files.
here's the code i use at the end of the generate function to output the above syntax:
if(options.main){output.write(("declare module '"+options.name+"' {")+eol+indent);output.write(("export * from '"+options.main+"';")+eol);output.write('}'+eol);sendMessage("Aliased main module "+options.name+" to "+options.main);}
The text was updated successfully, but these errors were encountered:
I'd like you to implement an option for an alternate to the current syntax generated for the
main
parameter. This is what I would like it to look like:If you were to do that (and with the more complete fix here), i will be able to automatically generate the Aurelia type definition files.
here's the code i use at the end of the
generate
function to output the above syntax:The text was updated successfully, but these errors were encountered: