Babel preset for all es2015 plugins. Removed some problematic plugins.
npm install --save-dev babel-preset-es2015-ng-compat
.babelrc
{
"presets": ["es2015-ng-compat"]
}
babel script.js --presets es2015-ng-compat
require("babel-core").transform("code", {
presets: ["es2015-ng-compat"]
});
boolean
, defaults to false
.
Enable "loose" transformations for any plugins in this preset that allow them.
"amd" | "umd" | "systemjs" | "commonjs" | false
, defaults to "commonjs"
.
Enable transformation of ES6 module syntax to another module type.
Setting this to false
will not transform modules.
boolean
, defaults to false
.
Enable "spec" transformations for any plugins in this preset that allow them.