* Use babel-preset-env on Streaming Server Change the streaming server to use babel-preset-env as well as asset compilation. This shortens the load time at first boot. * remove babel-plugin-lodash
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			178 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			178 B
		
	
	
	
		
			Text
		
	
	
	
	
	
{
 | 
						|
  "presets": [
 | 
						|
    [
 | 
						|
      "env",
 | 
						|
      {
 | 
						|
        "targets": {
 | 
						|
          "node": "current"
 | 
						|
        }
 | 
						|
      }
 | 
						|
    ]
 | 
						|
  ],
 | 
						|
  "plugins": [
 | 
						|
    "transform-object-rest-spread"
 | 
						|
  ]
 | 
						|
}
 |