This message was deleted.
# typescript
s
This message was deleted.
g
We're aware and working on upgrading the Typescript version. It looks like the newer versions of ts-node, the package we're using, dropped the caching ability, leading to a performance regression. More details here: https://github.com/pulumi/pulumi/issues/4876
c
Thanks for that, got some ideas and happy to go throw some prototypes together for ways to move forward. Will need a bit of help though with what's going wrong
Have dropped a comment into that issue
g
You're welcome! The other option if you're needing to get moving with what you have while we're working through it is compiling to JavaScript on your own and disabling the built-in support with https://www.pulumi.com/docs/intro/languages/javascript/#disabling-built-in-typescript-support. The actual definition of the TS version is here in case it helps! https://github.com/pulumi/pulumi/blob/master/sdk/nodejs/package.json#L25
c
The other option if you’re needing to get moving with what you have while we’re working through it is compiling to JavaScript on your own and disabling the built-in support with
Yeah, this is what I was trying to do with esbuild - but I get strange errors from the pulumi runtime. I assume the generated JS is causing issues and just not sure how to debug