'Type FullCalendarModule does not have 'ɵmod' property

I am using a full calendar npm package using angular. I am getting the following error.

Type FullCalendarModule does not have 'ɵmod' property.

Full calendar



Solution 1:[1]

The following steps fixed the problem for me:

  • rm -rf node_modules
  • npm install
  • adding "postinstall": "ngcc" to package.json scripts
"scripts": { "postinstall": "ngcc" }

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1