angular - Angular2 - ts files don't live-recompile with npm start -
i've created new angular 2 project ng new test
. when execute npm start
or ng serve
can see if change html file, browser page refreshes correctly.
but if change ts file nothing happens. in browser's console see:
[wds] app updated. recompiling... (two times) [wds] nothing changed.
in server console see recompiles old sources. example if have error correct, after saving file still see same error.
anyone can me?
i found solution https://github.com/angular/angular-cli/issues/4338 installed webpack 1.2.4 , works now!
Comments
Post a Comment