Skip to content
Snippets Groups Projects
babel.config.js 200 B
Newer Older
  • Learn to ignore specific revisions
  • Christoph Wurst's avatar
    Christoph Wurst committed
    module.exports = {
    
    	plugins: [
    		'@babel/plugin-syntax-dynamic-import'
    	],
    	presets: [
    		[
    			'@babel/preset-env',
    			{
    
    				modules: 'commonjs',
    
    				useBuiltIns: 'usage',
    				corejs: 3