Compile class and object decorators to ES5
$ npm install babel-plugin-transform-decorators
.babelrc
(Recommended).babelrc
{
"plugins": ["transform-decorators"]
}
$ babel --plugins transform-decorators script.js
require("babel-core").transform("code", {
plugins: ["transform-decorators"]
});