Use javascript in modern and safe way Right Now. Requires node ≥ 5.0.0
npm install
# Run Babel in watch mode
npm start
npm test # Type check
npm run build # Type check + Babel
// main.js
var hello = (): string => {
return 'Hello, world';
};
export { hello };