反应本机和流错误消息

mok*_*258 12 flowtype react-native

嗨,我试图用React Native做一些你好的世界.我创建项目'react-native init'更改'.flowconfig'中的流版本.

跑流,它给了我153个错误,在node_modules文件夹中 node_modules/react-native/Libraries

有没有人遇到同样的问题?

zvo*_*ona 15

我遇到了同样的问题.您需要执行两个步骤:

1.将.flowconfig与此文件进行比较,并添加您缺少的行:

[ignore]
; We fork some components by platform
.*/*[.]android.js

; Ignore "BUCK" generated dirs
<PROJECT_ROOT>/\.buckd/

; Ignore unexpected extra "@providesModule"
.*/node_modules/.*/node_modules/fbjs/.*

; Ignore duplicate module providers
; For RN Apps installed via npm, "Libraries" folder is inside
; "node_modules/react-native" but in the source repo it is in the root
.*/Libraries/react-native/React.js
.*/Libraries/react-native/ReactNative.js

<PROJECT_ROOT>/node_modules/.*
<PROJECT_ROOT>/libdefs.js
.*/__tests__/.*

[include]

[libs]
node_modules/react-native/Libraries/react-native/react-native-interface.js
node_modules/react-native/flow
./libdefs.js
Run Code Online (Sandbox Code Playgroud)

2.将libdefs.js创建到根文件夹中.它应该看起来像这样:

declare module 'react-native' { declare var exports: any; }
declare module 'jest' { declare var exports: any; }
Run Code Online (Sandbox Code Playgroud)

另外,声明所有模块流都会抛出错误(例如'mobx' - 我知道这可能有点令人沮丧,但必须要完成)