Comment on Running TypeScript in Node.js without any extra toolingComments−autocole1yIt seems a little silly to not support some of the small additions TypeScript contributes when it could just be another flag to enable enum, namespace, constructor to property init support−niedzielskiOP1yyou can try the --experimental-transform-types flag to support TypeScript code gen. I'll add it to the notes!--experimental-transform-types: https://nodejs.org/en/blog/release/v22.7.0#experimental-tran...
Comments
It seems a little silly to not support some of the small additions TypeScript contributes when it could just be another flag to enable enum, namespace, constructor to property init support
you can try the --experimental-transform-types flag to support TypeScript code gen. I'll add it to the notes!
--experimental-transform-types: https://nodejs.org/en/blog/release/v22.7.0#experimental-tran...