美文网首页
2019-07-24 运行报错Parsing error: Th

2019-07-24 运行报错Parsing error: Th

作者: 半眼鱼 | 来源:发表于2019-07-24 09:05 被阅读0次

运行后报错:

Parsing error: The keyword 'import' is reserved
这是因为我们还没有在配置文件.eslintrc中配置parserOptions来指定语言版本为和模块类型。

在.eslintrc添加如下配置:

{
  "parserOptions": {
    "ecmaVersion": 7,
    "sourceType": "module"
  }
}

重新编译运行。

相关文章

网友评论

      本文标题:2019-07-24 运行报错Parsing error: Th

      本文链接:https://www.haomeiwen.com/subject/eirtrctx.html