I've recently embarked on the journey of developing Office Add-ins, using public code samples to simplify the process. Currently, I am exclusively testing with the web version of Excel.
My goal is to merge the functionality of two sample add-ins: one built with Angular framework using Typescript and another with custom functions using Typescript provided by yo office. Both samples work flawlessly when tested individually.
To achieve this, I took the .ts, .json, and .html files from the custom functions add-in and placed them in the task pane add-in folder. Subsequently, I merged the dependencies of both add-ins and edited the manifest.xml following the example of the AsyncStorage sample (https://github.com/OfficeDev/PnP-OfficeAddins/blob/master/Excel-custom-functions/AsyncStorage/).
Although the task pane works normally, the custom functions are not appearing as expected. Here's a snippet of my manifest.xml:
<!-- Inserted manifest.xml data here -->
What could be causing this issue?