{ test: /\.js$/, loader: 'babel-loader' } - Matches just .js{ test: /\.(js|jsx)$/, loader: 'babel-loader' } - Matches both js and jsx{ test: /\.js$/, loader: 'babel-loader' } - 只匹配 .js{ test: /\.(js|jsx)$/, loader: 'babel-loader' } - 匹配 js 和 jsx