123456789101112131415 |
- module.exports = {
- plugins: [
- '@babel/plugin-syntax-dynamic-import',
- '@babel/plugin-proposal-optional-chaining',
- ['@babel/plugin-proposal-class-properties', { loose: true }],
- ],
- presets: [
- [
- '@babel/preset-env',
- {
- modules: false
- }
- ]
- ]
- };
|