Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ssougnez/daff2c4a155931cca3da15e8173316e6 to your computer and use it in GitHub Desktop.
Save ssougnez/daff2c4a155931cca3da15e8173316e6 to your computer and use it in GitHub Desktop.
module.exports = {
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: ["env"]
}
}
}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment