我正在努力学习反应和打字稿。并希望在我的项目中包含material-ui。从那里主页我被指示安装react-tap-event-plugin,我做了" node_modules / react-tap-event-plugin"确实存在!
现在我应该这样做:
import injectTapEventPlugin from 'react-tap-event-plugin';
injectTapEventPlugin();
但是typescript编译告诉我,它无法找到模块。
我尝试了不同的变体(使用require,导入node_mdules / ...),但没有任何效果。
如何正确设置?
这是我的package.json:
{
"private": true,
"scripts": {
"dev": "lite-server"
},
"dependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0",
"fbjs": "^0.2.1",
"react-tap-event-plugin": "0.2.0",
"material-ui": "^0.14.0"
}
}
答案 0 :(得分:7)
您需要为 react-tap-event-plugin 安装this。您可以通过执行以下操作definition file (.d.ts)来执行此操作:
typings
npm install typings --global
另外,请务必在typings install dt~react-tap-event-plugin --save
中引用typings/index.d.ts
。