标签: javascript react-native eslint flowtype
我在React Native中有一个文件,它使用以下导入:
import ChatHelper from "@components/Helpers/Chat"
不幸的是,Flow linter将此标记为错误。
如何在.flowconfig中设置模块映射器以确保正确显示。我试过了:
.flowconfig
[options] module.name_mapper='^@components/\(.*\)$' -> './app/components/\1'
这似乎不起作用。