Closed ghost closed 8 years ago
What is the content of .babelrc
?
Mhhh. You are right, I did all my ES6 stuff within webpack config file so far:
{test: /\.js$/, loader: 'babel-loader', exclude: /node_modules/, query: { presets: ['es2015', 'react', 'stage-0']}},
After I had added .babelrc to my root dir with the following content, npm install worked:
{ "presets": ["es2015", "react","stage-0"] }
Thanks for your help and your great framework :)
Hey :)
If I install the library via npm
"redux-act-async": "0.11.0"
I first had to add"babel-cli": "^6.11.4"
that it compiles. However now I get the following error: `It seems that the ES7 Spread-operator can't be interpreted.
Is that just an error at my side or do you can reproduce that error?