我试图从我的一个Node包中导入Typescript类,但是出现以下错误:
module.js:549
throw err;
^
Error: Cannot find module '@sap/api'
at Function.Module._resolveFilename (module.js:547:15)
at Function.Module._load (module.js:474:25)
在此文件中:
import { Plugin } from "@sap/api";
new Plugin();
从此index.ts文件导入的内容:
export { Plugin } from "./src/plugin";
其中提到“ src / plugin.ts”:
export class Plugin {
constructor() {}
onLoad() {}
onUnload() {}
onReload() {}
}
当我在VSCode中单击导入时,它将带我到正确的文件。
我在做什么错?我是Typescript的新手,如果这是一个nooby错误,请对不起。