dayjs
dayjs copied to clipboard
Issue with Typescript `import utc from "dayjs/plugin/utc"` gives Cannot find module 'dayjs/plugin/utc' or its corresponding type declarations
Describe the bug
I got Cannot find module 'dayjs/plugin/utc' or its corresponding type declarations when using Typescript and dayjs latest version.
Expected behavior
I fixed this using :
import utc from "dayjs/plugin/utc.js";
(with .js suffix) but I don't know I'm supposed to do so.
FYI, that post helped me https://github.com/iamkun/dayjs/issues/1167#issuecomment-972880586