[Chartjs]-Invalid module name in augmentation. Module 'chart.js' resolves to an untyped module at '/src/chart.js', which cannot be augmented

11👍

Per this comment you have to install @types/chart.js.
And you have to import this lib with

import * as Chart from 'chart.js';

Leave a comment