I\'m using Angular2-rc4 with angular-cli webpack and would like to implement a chart.js library.
I\'ve installed chart.js to my project using:
If you are using webpack you may try adding the chart.js file (or the minified version) to the entry property as follows:
... entry: { 'chartJS': './node_modules/chart.js/dist/Chart.bundle.min.js', // Other mappings } ...