I\'m launching a react app, and here\'s my Webpack configuration:
\'use strict\' const ExtractPlugin = require(\'extract-text-webpack-plugin\') const HTMLPl
Before in my .babelrc
i was using the plugin: ["transform-object-rest-spread", { "useBuiltIns": true }],
["transform-object-rest-spread", { "useBuiltIns": true }],
then i switch it to "@babel/plugin-proposal-object-rest-spread" and all those warnings went away, which has been very nice. `
"@babel/plugin-proposal-object-rest-spread"