Typescript import returns “Cannot find module”

后端 未结 3 416
离开以前
离开以前 2021-01-27 09:02

I\'m trying to import a module as import Something from \"@module\", but it returns

Cannot find module \'@config\'

\"@m

3条回答
  •  自闭症患者
    2021-01-27 09:49

    I had a similar issue with "moment" I have import like below and it does work.

    import * as moment from 'moment';
    

提交回复
热议问题