标签: javascript reactjs react-native flowtype
我需要有不同的.flowconfig个文件,因为在其中一个文件中,我需要在模块部分包含module.file_ext=.web.js,在另一个文件中我需要包含module.file_ext=.native.js。
.flowconfig
module.file_ext=.web.js
module.file_ext=.native.js
这很有用,因为flow了解路由并帮助我确定应用程序是否需要丢失文件。
我正在查看documentation,但我找不到是否可能。
答案 0 :(得分:1)
您是对的,无法通过CLI覆盖它。
.flowconfig似乎是硬编码的:source reference on github
您的问题还有is an open issue on github