mok*_*258 12 flowtype react-native
嗨,我试图用React Native做一些你好的世界.我创建项目'react-native init'更改'.flowconfig'中的流版本.
跑流,它给了我153个错误,在node_modules文件夹中
node_modules/react-native/Libraries
有没有人遇到同样的问题?
zvo*_*ona 15
我遇到了同样的问题.您需要执行两个步骤:
[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)
declare module 'react-native' { declare var exports: any; }
declare module 'jest' { declare var exports: any; }
Run Code Online (Sandbox Code Playgroud)
另外,声明所有模块流都会抛出错误(例如'mobx' - 我知道这可能有点令人沮丧,但必须要完成)
| 归档时间: |
|
| 查看次数: |
3363 次 |
| 最近记录: |