我想完全理解Typescript如何在Node.js項目中工作。爲了實現這個功能,我創建了我自己的custom_modules
文件夾,其中有一個單獨的@types
文件夾供我的聲明使用,而實際的實現是在custom_modules
下嘗試模仿node_modules
的結構。我的目標是通過單獨的聲明和實現使該模塊在項目中非相對可用。我已經能夠安裝這一設置編譯一個項目,但與運行它的錯誤:Typescript自定義節點模塊
Cannot find module 'foo'
來源是可在這裏: https://github.com/anorborg/learn-ts