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
。我认为这可以通过转译/填充来完成?我的打字稿配置是:
{
"compilerOptions": {
"sourceMap": true,
"target": "es5",
"declaration": true,
"removeComments": false,
"module" : "commonjs",
"moduleResolution": "node",
"resolveJsonModule": true,
},
"include": [
"src/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}
将以下内容添加到编译器选项中:
"lib": [
"dom",
"es5",
"es2015.promise"
]
此处更详细地介绍了lib
选项。
以下是target
和lib
之间区别的解释。
话虽如此,如果您可以接受使用es6
,那么我认为您可以将target
设置为"es6"
而不是弄乱lib
。