如何在react-rails中使用babel预设

时间:2016-10-12 15:04:10

标签: ruby-on-rails react-rails

我有一个使用react-rails gem的rails应用程序,我想使用箭头函数和静态函数声明:

class Component {
  static propTypes = { ... }

  onClick = (e) => { ... }
}

我尝试添加初始化程序,但我不知道如何从babel添加stage-3预设:

// stage-3 not found
config.react.jsx_transform_options = {
  optional: ["stage-3"]
}

// preset option doesn't exist
config.react.jsx_transform_options = {
  preset: ["stage-3"]
}

如何使用带反应轨的babel预设?

0 个答案:

没有答案