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