We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52f78d6 commit e720d98Copy full SHA for e720d98
packages/common/templates/configuration/babelrc/index.js
@@ -97,7 +97,16 @@ const config: ConfigurationFile = {
97
98
if (template === 'parcel') {
99
const presets = ['env'];
100
- const plugins = [];
+ const plugins = [
101
+ [
102
+ 'transform-runtime',
103
+ {
104
+ polyfill: false,
105
+ regenerator: true,
106
+ },
107
+ ],
108
+ 'transform-object-rest-spread',
109
+ ];
110
111
const packageJSONModule = resolveModule('/package.json');
112
0 commit comments