我尝试在我的 Nuclide 安装中使用 Flow,但在我的 React-Native 项目中看不到任何诊断。但是从 cli 运行流程会导致 1000 多个错误。
如果我保存一个文件,底部栏中的微调器正在旋转,然后完全消失(没有空闲)。
.flowconfig
[ignore]
[include]
[libs]
[lints]
[options]
包.json
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-jest": "19.0.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-native": "^1.9.1",
"flow-bin": "^0.56.0",
"jest": "19.0.2",
"react-test-renderer": "15.4.2"
},
我的 App.js
/* @flow */
Math.pow('X');
import boot from "./app/boot";
const app = boot();
export default app;