Looking for guidance on Office add-ins and VS code...
I recently went through the steps outlined in this tutorial by Microsoft to create an Excel custom functions add-in. To debug it using VS code, I had to select TypeScript as the script type while creating an Excel Custom Functions Add-in project option in the Yeoman generator (as per Microsoft's instructions).
The add-in is functioning properly, but I encountered issues with the related debugging tutorial provided by Microsoft. Any breakpoints added are showing up as unbound, and I'm getting a "read source map" error, which might be connected (refer to screenshot).
Any suggestions on how I can resolve this?
Thank you for your assistance,
Adrian
Edit: below is the content of launch.json, which I haven't modified from what Yeoman generated.
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Excel Desktop (Custom Functions)",
"type": "node",
"request": "attach",
"port": 9229,
&q...