react-native 配置 .babelrc 文件
2019-11-14 07:46:18    15    0    0
admin

模板解析(路径别名) 插件: babel-plugin-module-resolver

  1. {
  2. "presets": ["module:metro-react-native-babel-preset"], // 这里必须加上
  3. "plugins": [
  4. [
  5. "module-resolver",
  6. {
  7. "root": [
  8. "./"
  9. ],
  10. "alias": {// 别名
  11. "^@(.+)": "./src/\\1" // 匹配所有以@开头的路径名
  12. },
  13. "extensions": [".js", ".ios.js", ".android.js"] // react-native 需要这个
  14. }
  15. ]
  16. ]
  17. }

Pre: react-native使用笔记

Next: MapBox(可自定义, 开源)

15
Sign in to leave a comment.
No Leanote account? Sign up now.
0 comments
Table of content