1234567891011121314151617181920 |
- module.exports = {
- presets: [
- [
- '@babel/env',
- {
- loose: true,
- modules: false,
- exclude: ['transform-typeof-symbol']
- }
- ]
- ],
- plugins: [
- '@babel/plugin-proposal-object-rest-spread'
- ],
- env: {
- test: {
- plugins: [ 'istanbul' ]
- }
- }
- };
|