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

babel.config.js 207B

1234567891011121314
  1. module.exports = {
  2. plugins: [
  3. '@babel/plugin-syntax-dynamic-import',
  4. '@babel/plugin-proposal-class-properties',
  5. ],
  6. presets: [
  7. [
  8. '@babel/preset-env',
  9. {
  10. useBuiltIns: false,
  11. },
  12. ],
  13. ],
  14. }