FYI: Regarding use of already transpiled packages, I found I can avoid forges old typescript version choking on those packages by using them from a js module instead of a ts module. In that case it’ll use the transpiled js code instead of trying to use ts code. Then, my js module just re-exports functions as necessary so I can use them from other ts modules in my app. This isn’t great but it allowed me to get beyond the typescript errors.
1 Like