打字稿:错误 TS2693:“承诺”仅指一种类型,但在此处用作值

新手上路,请多包涵

我正在尝试将 Typescript 用于我的 AWS Lambda,并且在我使用 Promise 的地方出现以下错误。

错误 TS2693:“Promise”仅指一种类型,但在此处用作值。

我尝试在代码中使用以下变体

使用 Promise 构造函数

responsePromise = new Promise((resolve, reject) => {
                    return reject(new Error(`missing is needed data`))
                })

使用 Promise.reject

 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",

tsconfig.json 的内容

{
    "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] ‘Promise’ 仅指一种类型,但在这里被用作一个值, 但没有运气。

原文由 kalyanvgopal 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 960
1 个回答

我通过以下组合属性在 index.ts 中摆脱了同样的错误:

在 tsconfig.json 中:

   "compilerOptions": {
    "target": "ES6"

在 package.json 中:

   "main": "index.ts",
  "scripts": {
    "start": "tsc -p tsconfig.json && node index.js"

原文由 Washington Guedes 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题