E3017

E3017#

JSON 解析错误。这只会出现在 moon.pkg.json 文件中。

您使用的编辑器可能已经安装对 JSON 的支持(例如,Visual Studio Code 有内置的 JSON 解析器)。此错误可能是由于缺少逗号或缺少结束大括号引起的。

错误示例#

{
  "is-main": true
  "import": [] // Error: Expect_comma_or_rbrace
}

建议#

{
  "is-main": true,
  "import": []
}