Javascript Babel "typeerror: Cannot Read Property 'bindings' Of Null" When Trying To Transpile
Using PhpStorm, as I understand it, when I modify a JavaScript source file, I have this filewatcher (babel) that will do some kind of magic and places these files a little transfor
Solution 1:
This is caused by a mismatch of babel dependencies between 6 & 7. You currently seem to have both installed.
Try removing babel-core
, babel-polyfill
and babel-preset-env
from your dependencies in package.json
.
If you need babel-polyfill
then you should install the version 7 package instead, which has been renamed to @babel/polyfill
.
Post a Comment for "Javascript Babel "typeerror: Cannot Read Property 'bindings' Of Null" When Trying To Transpile"