How can moment.js be imported with typescript?

后端 未结 7 1566
-上瘾入骨i
-上瘾入骨i 2020-11-30 09:51

I\'m trying to learn Typescript. While I don\'t think it\'s relevant, I\'m using VSCode for this demo.

I have a package.json that has these pieces in it

7条回答
  •  难免孤独
    2020-11-30 10:14

    Still broken? Try uninstalling @types/moment.

    So, I removed @types/moment package from the package.json file and it worked using:

    import * as moment from 'moment'
    

    Newer versions of moment don't require the @types/moment package as types are already included.

提交回复
热议问题