Closed davidmoshal closed 8 years ago
your .babelrc file is missing a comma - interestingly babel didn't output a clear message.
.babelrc
{ "presets": [ "es2015", "stage-0" ] "plugins": ["babel-plugin-syntax-jsx", "babel-plugin-inferno"] }
should be:
{ "presets": [ "es2015", "stage-0" ], "plugins": ["babel-plugin-syntax-jsx", "babel-plugin-inferno"] }
note the comma after ["stage-0"]
@davidmoshal Thanks for the issue. This was a typo in the readme :)
you are quick, just like your project!
your
.babelrc
file is missing a comma - interestingly babel didn't output a clear message.should be:
note the comma after ["stage-0"]