react-native使用babel-plugin-root-import注意事项

我们在`react-native`中使用`babel-plugin-root-import`,一般是`yarn add [email protected]`,然后在`.babelrc`配置:
{
"plugins": [
[
"babel-plugin-root-import",
{
"rootPathPrefix": "@",
"rootPathSuffix": "src/"
}
]
]
}
但是我们需要注意,不能在`rootPathPrefix`中设置为`@`,这样很容易跟第三方的依赖产生冲突,比如`import { NavigationContainer } from '@react-navigation/native';`。`'@react-navigation/native'`应该是从`node_modules`中引入,但是这个时候将会从`src`中引入,所以我们需要配置为:
{
"plugins": [

react-native使用babel-plugin-root-import注意事项最先出现在Python成神之路

版权声明:
作者:cc
链接:https://www.techfm.club/p/11792.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>