This module is a plugin for Appcelerator Titanium CLI that brings es6 into an Alloy project.
It works thanks to Babel
and Polyfill
in order to transpile Alloy sources into fully a code
that is ES5-compatible.
npm install -g ti.es6
You can either add the option --es6
with your build command:
appc run --es6
or ti build --es6
or, you may also define a boolean property in your tiapp.xml
and avoid giving the option each
time:
...
<property name="es6" type="bool">true</property>
...