标签: reactjs typescript react-native
我正在将我们的react-native项目从js转换为打字稿。但是,对于我们要导入的旧模块,我得到了错误
Cannot find module 'numeral'
“数字”模块显然位于/node_modules目录中
/node_modules
答案 0 :(得分:0)
事实证明,对于打字稿文件使用的节点模块,我们只需执行yarn add @types/numeral --dev即可将节点模块添加到node_modules/@types文件夹中,问题就解决了
yarn add @types/numeral --dev
node_modules/@types