拖运反应本机打包程序:无法转译解构对象

时间:2018-08-25 12:32:40

标签: android react-native react-navigation

在运行android开发模式时,由于将道具传递给DrawerItems而收到该错误

<DrawerItems {...props}/>

enter image description here

haul.config.js

    import { createWebpackConfig } from "haul";
export default {
  webpack: env=>{
    var config = createWebpackConfig({
      entry: `./index.js`
    })(env);
    config.module.rules = [
      ...config.module.rules,
      {
        test: /\.js/,
        exclude: /node_modules(?!.*[\/\\](query-string|strict-uri-encode))/,
        loader: 'babel-loader'
      },

    ];

    return config;
  } 
};

本机0.55.4 拖1.0.0-rc7 Windows 7

0 个答案:

没有答案