I have two classes:
[TypeScriptModule("commands")]
public class ClientCommand : VoidCommand
{
public string CommandType { get; set; }
}
and
[TypeScriptModule("commands")]
public class PublishEvent : ClientCommand
{
public string Description { get; set; }
public string AnotherProperty { get; set; }
}
When I use the WebEssentials "Create Typescript Intellisense file" command on these files, the one generated for PublishEvent doesn't include an "extends ClientCommand" expression.
A quick scan of the WebEssentials code suggests that this ought to work, but I'm obviously missing something. Any ideas what?