presets
are a collections ofplugins
.Plugins
can be included individually in theplugins
array or collection ofplugins
in thepresets
arraypresets
andplugins
evaluation ordering is different:
"plugins": [
"transform-decorators-legacy", // evaluated first
"transform-class-properties" // evaluated second
]
"presets": [
"es2015", // evaluated first
"react", // evaluated second
"stage-2" // evaluated third
]