我试图使用我的 AWS Lambda 的类型脚本,我得到了以下错误,我曾经使用的承诺。
error TS2693: 'Promise' only refers to a type, but is being used as a value here.
我尝试在代码中使用以下变体
使用 Norman 构造函数
responsePromise = new Promise((resolve, reject) => {
return reject(new Error(`missing is needed data`))
})
用的是“承诺”和“拒绝”
responsePromise = Promise.reject(new Error(`Unsupported method "${request.httpMethod}"`));
下面是我的开发依赖项中的版本:
"typescript": "^2.2.2"
"@types/aws-lambda": "0.0.9",
"@types/core-js": "^0.9.40",
"@types/node": "^7.0.12",
{
"compileOnSave": true,
"compilerOptions": {
"module": "commonjs",
// "typeRoots" : ["./typings", "./node_modules/@types"],
"target": "es5",
// "types" : [ "core-js" ],
"noImplicitAny": true,
"strictNullChecks": true,
"allowJs": true,
"noEmit": true,
"alwaysStrict": true,
"preserveConstEnums": true,
"sourceMap": true,
"outDir": "dist",
"moduleResolution": "Node",
"declaration": true,
"lib": [
"es6"
]
},
"include": [
"index.ts",
"lib/**/*.ts"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}
我使用 grunt-ts 和下面的配置来运行 ts 任务。
ts: {
app: {
tsconfig: {
tsconfig: "./tsconfig.json",
ignoreSettings: true
}
},
...
我尝试了 我得到: [ ts ] & # 39; 瓶颈只是指一个类型,但是在这里被用作一个值中提到的解决方案,但没有运气。