1

我正在尝试clasp根据官方建议使用。这是我的tsconfig.json

{
  "compilerOptions": {
    "lib": ["esnext"],
    "experimentalDecorators": true
  }
}

这是我尝试使用以下方式推送到 Google Apps 脚本项目的示例代码clasp push

function test(): string {
  const m: Map<string, string> = new Map<string, string>();
  m.set("foo", "bar");
  return JSON.stringify(m);
}

它是这样被转译的:

// Compiled using ts2gas 1.6.2 (TypeScript 3.5.2)
var exports = exports || {};
var module = module || { exports: exports };
function test() {
    var m = new Map();
    m.set("foo", "bar");
    return JSON.stringify(m);
}

在 Google Apps 脚本项目上运行该方法时,出现错误: ReferenceError: "Map" is not defined. (line 5, file "test")

据我了解,Google Apps 脚本应该提供Map,因为它是esnext. 我究竟做错了什么?为什么Map不可用?

4

0 回答 0