babel-preset-ui5
v6.1.0
Published
An UNOFFICIAL preset for building SAP UI5 application with Babel.
Maintainers
Readme
babel-preset-ui5
An UNOFFICIAL preset for building SAP UI5 application with Babel.
Document
Please take a look at https://github.com/MagicCube/babel-plugin-ui5
Install
$ npm install --save-dev babel-preset-ui5Usage
Via .babelrc (Recommended)
.babelrc
{
"presets": ["ui5"]
}Via CLI
$ babel script.js --presets ui5Via Node API
require("babel-core").transform("code", {
presets: ["ui5"]
});