Closed vaseker closed 8 years ago
I think the reason of the error are this and this lines of code. Briefly: typescript loader are not applied to node modules and .ts
extension has a priority over .js
.
Possible solution: set resolve.extensions
to ['', '.js', '.ts']
(now .js
extension has a priority over .ts
) (you need to change it here, here, here and here)
@vaseker Please, try this solution and tell me the results.
set resolve.extensions to ['', '.js', '.ts']
Yes, this is it!
Thank you!
Hello! Im trying to use
highcharts
via ng2-highcharts directives, but I stuck with error (npm run dev
,NO_WW
,NO_SS
)It works well in official
ng2-highcharts
sample.So Im trying to use it like this:
What is wrong?
Thank you.