Nodemailer 的 Typescript 问题

Node with Typescript problem with nodemailer

我对 Typescript 中的 nodemailer 有疑问。我通过

下载了这个包
npm install --save @types/nodemailer

一切都正确安装,一切都在 node_modules,package.JSON 依赖项有一个条目。当我打电话给

import * as nodemailer from 'nodemailer' 

file 它转置 tsc 并启动节点 file.js 一切正常......但是当我向该文件添加函数调用时它抛出错误“找不到模块 'nodemailer'。请帮助。

您刚刚安装了类型定义,但没有安装库本身。

您还必须安装

node install --save nodemailer