ipatalas / vscode-postfix-ts

Postfix notation for TypeScript/Javascript - extension for VS Code
MIT License
159 stars 43 forks source link

[Request] - Packaging up dist with a bundler #51

Closed jasonwilliams closed 2 years ago

jasonwilliams commented 2 years ago

Having the final out output still be loads of JS files can slow the editor down as there needs to be many I/O systems calls to open them all. tsc will convert back to JS but will do it file-for-file. I've noticed performance could be improved with this plugin by not having to load all the individual files.

Maybe consider using a bundler like webpack or ESbuild for your production build.