首页 > 解决方案 > appsscript.json 中需要逗号的地方

问题描述

我已经设置了参考文档的扣子。我在名为 appsscript.json 的文件中发现了一个错误。(文档中的先决条件)错误是:Expected comma json(514) [8,3] Please tell me resolution。

{
  "timeZone": "Asia/Tokyo",
  "dependencies": {
  },
  "exceptionLogging": "STACKDRIVER",
  "runtimeVersion": "V8"

  "executionApi": {
    "access": "ANYONE"
  }
}

标签: visual-studio-codewindows-10clasp

解决方案


下面的代码缺少逗号:

"runtimeVersion": "V8"

替换代码:

"runtimeVersion": "V8",

推荐阅读