2
Promise.all<any, any>(ajaxRequests).then(()=> {
    console.log("done");
});

上面的代码给出了以下编译器错误:

TS2585: 'Promise' only refers to a type, but is being used as a value here. Do you need to change your target library? Try changing the `lib` compiler option to es2015 or later.

我不熟悉这个编译器lib选项是什么以及如果我要更改它会产生什么影响。


es5我正在尝试针对较旧的浏览器,并且我相信需要支持。我认为这可以通过转译/polyfilling来完成?我的打字稿配置是:

{
    "compilerOptions": {
        "sourceMap": true,
        "target": "es5",
        "declaration": true,
        "removeComments": false,
        "module" : "commonjs",
        "moduleResolution": "node",
        "resolveJsonModule": true,
    },
    "include": [
        "src/*"
    ],

    "exclude": [
        "node_modules",
        "**/*.spec.ts"
    ]
}
4

1 回答 1

4

将以下内容添加到您的编译器选项中:

"lib": [
        "dom",
        "es5",
        "es2015.promise"
    ]

此处lib更详细地描述了这些选项。

这里target解释一下和之间的区别lib

话虽这么说,如果 usinges6对您来说是可以接受的,那么我认为您可以设置target"es6"而不是弄乱lib.

于 2019-04-05T14:15:30.727 回答