Skip to content

Instantly share code, notes, and snippets.

@leeson3
Created April 22, 2019 09:14
babel loader
//babel loader (es6降轉es5)
{
test: /\.m?js$/,
exclude: /(node_modules|bower_components)/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env']
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment