Is there any plans to migrate to tsx instead of ts...
# general
f
Is there any plans to migrate to tsx instead of tsnode? Would be a huge quality of life boost
c
fyi you can use tsx currently using runtime options in Pulumi.yaml:
Copy code
runtime:
  name: nodejs
  options:
    typescript: false
    nodeargs: "--import tsx/esm"
f
noice
c
or just
"--import tsx"
if your not using esm
f
is this documented somewhere?
c
don't think so I found it on some github issue but can't remember where. but you can see the docs for the options here to understand it https://www.pulumi.com/docs/concepts/projects/project-file/ https://www.npmjs.com/package/tsx/v/4.0.0#nodejs-loader
👍 1
(you will need to add tsx as a dependency obviously)
l
Next stop... bun!