Skip to content

Interface change doesn't trigger change in webpack #156

@andreyctkn

Description

@andreyctkn

For example:

  1. clone this starter kit https://github.com/AndreyUtka/angular-typescript-starter-kit
  2. run web pack dev server
  3. 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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions