You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am looking into modernizing my current Google Apps Scripts (GAS), within which I currently use SheetConverter. However, as this guide points out, local scripts will not "know about" referenced "Libraries" (as the GAS docs refer to them) unless they are wired up via a corresponding type/npm package.
Request
Make SheetConverter available available as an npm package so that modern GAS implementations can import them.
Workaround
Per the GAS + typescript docs, you can simply ignore reference errors in local code with a ts-ignore statement. I will probably do this for now, but eventually I would like to implement a true package reference for SheetConverter so that I can run tests at its boundaries.
The text was updated successfully, but these errors were encountered:
Background
I am looking into modernizing my current Google Apps Scripts (GAS), within which I currently use SheetConverter. However, as this guide points out, local scripts will not "know about" referenced "Libraries" (as the GAS docs refer to them) unless they are wired up via a corresponding type/npm package.
Request
Make SheetConverter available available as an npm package so that modern GAS implementations can import them.
Workaround
Per the GAS + typescript docs, you can simply ignore reference errors in local code with a
ts-ignore
statement. I will probably do this for now, but eventually I would like to implement a true package reference for SheetConverter so that I can run tests at its boundaries.The text was updated successfully, but these errors were encountered: