我试图让 IDE 识别 Flow 原生类型,但没有成功。
我在我的项目中安装了 ESLint。不知道为什么 Flow 无法解析它们。
我所有的节点模块都是最新的。
这是我的 .eslintrc.json 的一部分:
{
"env": {
"es6": true,
"node": true
},
"extends": ["eslint:recommended"],
"globals": {
"$ReadOnlyArray": true,
},
"parser": "babel-eslint",
"plugins": [
"babel",
"flowtype"
]
}