For example:
- clone this starter kit https://github.com/AndreyUtka/angular-typescript-starter-kit
- run web pack dev server
- Make some change in interface
export interface IHelloScope {
displayName: string;
style: Object;
}
->
export interface IHelloScope {
displayName: boolean;
style: Object;
}
In this case, it does not trigger update process.
The main question is why it does not trigger an update when I made changes only in interfaces?
Thanks.