Any tool that will complie my TS code to JS?
I have coded a website in typescript using Deno, but I want to convert it to JS code. I know the Deno runtime does it automatically for me but I want to convert my codebase permanently to JS. Is there any tool I can use to do that?
7 Replies
Also want to convert my vendor folder to JS
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
Yup
you could use https://deno.land/x/esbuild_serve@1.2.1
just create a serve.ts file run with "deno run -A serve.ts build" and now you have it
Alright ill take a look
I just learnt that i can also use
deno bundle
for my issue toonot really
its really just packs code together nothing more
Yeah well that solves my issue anways. I’m testing my code on a new serverless architecture design, and i wanted to reduce the startup time by not making deno transpile my code