简体   繁体   中英

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.

完整日历

The following steps fixed the problem for me:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM