我想在我的打字稿項目中使用的時刻,但是當我用線,導入瞬間變成打字稿項目
import moment from 'moment';
我得到的錯誤:
'node_modules/moment/moment' has no default export.
我也試過,
import moment from 'moment/src/moment';
但後來我得到的錯誤:
'Cannot find module moment/src/moment'.
有沒有人知道這樣做的方式?謝謝。
工作的呢? 'import moment = require('./bower_components/moment/src/moment');'?或者'import moment = module('moment');'? –
請參閱@ Mr.Polywhirl的回答,「'node_modules/moment/moment'沒有默認導出。」意味着腳本不是模塊 – Ozrix
當我嘗試導入moment = module('moment')時,它給出錯誤「Can not find namespace'module'」。我應該爲此包括一些東西嗎?當我嘗試第一段代碼時(我正在使用node_modules),出現錯誤「Can not find module'../node_modules/moment/src/moment'」。 – user1950599