I've done quite a bit of work with type script and we always used modules to create namespaces. I'm finding this isn't working with angular. Any assistance on what special needs to be done is appreciated.
With the below code I would expect to be able to reference the code in an import as MyApplication.Contacts.ContactComponent.
module MyApplication.Contacts {
@Component({
templateUrl: '/Home/Contact'
})
export class ContactComponent {
}
}