How can moment.js be imported with typescript?

后端 未结 7 1564
-上瘾入骨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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-30 09:57

    Not sure when this changed, but with the latest version of typescript, you just need to use import moment from 'moment'; and everything else should work as normal.

    UPDATE:

    Looks like moment recent fixed their import. As of at least 2.24.0 you'll want to use import * as moment from 'moment';

提交回复
热议问题