Skip to content

Instantly share code, notes, and snippets.

@hadeshe93
Created December 8, 2020 03:46
Show Gist options
  • Save hadeshe93/392106a5ea98f26e28427f01532c7952 to your computer and use it in GitHub Desktop.
Save hadeshe93/392106a5ea98f26e28427f01532c7952 to your computer and use it in GitHub Desktop.
Babel config file
const presets = [
[
'@babel/preset-env',
// 默认是 'auto'
//{ modules: 'commonjs'},
],
];
const plugins = [
'@babel/plugin-transform-runtime',
'@babel/plugin-proposal-class-properties',
'@babel/plugin-proposal-object-rest-spread',
'@babel/plugin-proposal-optional-chaining',
];
module.exports = {
presets,
plugins,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment