Определенно нетипичные определения для Express не работают - PullRequest
0 голосов
/ 11 января 2019

Я пытаюсь запустить приложение Hello World Express в узле с машинописью, а типы DefinitiveTyped, по-видимому, полностью игнорируются.

package.json:

{
    "dependencies": {
        "@types/express": "*",
        "@types/node": "*",
        "express": "*"
    }
}

tsconfig.json:

{
    "compilerOptions": {
        "module": "commonjs",
        "lib": [
            "es2015"
        ],
        "target": "es6",
        "noImplicitAny": true,
        "strictNullChecks": true,
        "noImplicitThis": true,
        "noImplicitReturns": true,
        "moduleResolution": "node",
        "outDir": "dist",
        "baseUrl": "."
    },
    "include": [
        "src/**/*"
    ]
}

SRC / app.ts:

const express = require('express'); //express is typed "any" because @types/express is apparently ignored
const app = express();
const port = 3000;
app.get('/', (req, res) => res.send('Hello World!')); //Compile error here because implicit any
app.listen(port, () => console.log(`Example app listening on port ${port}!`));

Скомпилировать вывод:

~/tmp/ws-test$ tsc
src/app.ts(5,15): error TS7006: Parameter 'req' implicitly has an 'any' type.
src/app.ts(5,20): error TS7006: Parameter 'res' implicitly has an 'any' type.

Я чувствую, что принимаю сумасшедшие таблетки. Что здесь не так?

1 Ответ

0 голосов
/ 11 января 2019

В вашей конкретной настройке вам придется выполнять импорт одним из двух способов:

import express = require('express');

или

import * as express from 'express';

Если вы не хотите импортировать, как:

import express from 'express';

Вы можете добавить "allowSyntheticDefaultImports": true к compilerOptions.

...