0
隨着ES6,我可以從庫中導入只是一個功能全包最小化,如:在打字稿,如何從做進口合併「lodash /合併」
import merge from "lodash/merge"
然而,打字稿,上面的句子會導致編譯錯誤:無法找到模塊「lodash/merge」。如何解決它?
隨着ES6,我可以從庫中導入只是一個功能全包最小化,如:在打字稿,如何從做進口合併「lodash /合併」
import merge from "lodash/merge"
然而,打字稿,上面的句子會導致編譯錯誤:無法找到模塊「lodash/merge」。如何解決它?
Cannot find module "lodash/merge". How to solve it
TypeScript的定義不支持單獨加載lodash成員。
無論import * as _ from "lodash"
或寫自己的定義。上創作
TIPS:https://basarat.gitbooks.io/typescript/content/docs/types/ambient/intro.html
的可能的複製[DefinitelyTyped Lodash](http://stackoverflow.com/questions/36373959/definitelytyped-lodash) – 4castle