我的 Babel 文件观察器的 PhpStorm 中出现以下编译错误:
cmd.exe /D /C call "C:/Program Files/nodejs/babel.cmd" wp-content\plugins\scorch_gutenberg\blocks.js --out-dir dist --presets=es2015
SyntaxError: wp-content/plugins/scorch_gutenberg/blocks.js: Unexpected token (12:15)
10 |
11 | edit() {
> 12 | return <p style={ blockStyle }>Hello editor.</p>;
| ^
13 | },
14 |
15 | save() {
Process finished with exit code 1
本质上,它看起来好像没有识别 ES6 语法。我已经根据 Babel 网站安装了 es2015 预设,我看到的唯一错误是这个 Synax 错误,所以不确定我是否遗漏了一些明显的东西,因为我真的是一个 PHP 开发人员。
任何帮助都会很棒,或者如果其他人拥有最新版本的 PhpStorm 并为此目的设置了转译器。