* Add Object.assign polyfill support * Remove redundant polyfill check * Use ES6 in compatibility.js
9 lines
191 B
JavaScript
9 lines
191 B
JavaScript
import config from './base-config';
|
|
|
|
export default Object.assign({}, config, {
|
|
entry: 'src/compatibility.js',
|
|
targets: [
|
|
{ dest: 'build/compatibility.js', format: 'iife' },
|
|
],
|
|
});
|