選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

.babelrc 208 B

123456789101112131415
  1. {
  2. "presets": [
  3. ["es2015"],
  4. "stage-2",
  5. "react",
  6. ],
  7. "env": {
  8. "production": {
  9. "ignore": ["node-modules/**", "src/__tests__/**"],
  10. },
  11. "test": {
  12. "ignore": ["node-modules/**"],
  13. }
  14. }
  15. }