使用 TypeScript 选项安装 Quasar 测试扩展时出现 Tsconfig 错误

Tsconfig error when installing Quasar testing extension with TypeScript option

使用 TypeScript 选项安装测试扩展时出现错误。

我试过@quasar/testing-unit-jest和@quasar/testing 在这两个结果中我都得到一个错误:

UnhandledPromiseRejectionWarning: SyntaxError: /Volumes/Work/cnd05/services/app/tsconfig.json: Unexpected token } in JSON at position 305

我的 tsconfig 是:

{
"extends": "@quasar/app/tsconfig-preset",
"compilerOptions": {
    "baseUrl": ".",
    "experimentalDecorators": true,
    "forceConsistentCasingInFileNames": false,
    "esModuleInterop": true,
    "removeComments": true,
    "allowJs": true,
    "types": [
      "quasar"
    ]
  },
}

UPD:当我尝试在没有 TypeScript 支持的情况下安装它时,一切都很好。创建带有示例的测试文件夹等。但是我遇到那个错误后没有测试文件夹。

我的错。我错过了 tsconfig.json 中的尾随逗号,这是 JSON 语法所不允许的。