So I ran npm install @microsoft/generator-sharepoint@latest -g
Now I have a bunch of errors in my WebPart.ts files
spfxContext is highlighted and the error is ...
(property) ILibraryConfiguration.spfxContext?: ISPFXContext Used to supply the current context from an SPFx webpart to the library
Type 'WebPartContext' is not assignable to type 'ISPFXContext'.ts(2322)
protected onInit(): Promise {
sp.setup({
spfxContext: this.context
});
return super.onInit();
}
thanks P