Description
There is no easy to use, zero config way to transpile deno-flavored-typescript to Javascript.
From the TS side:
The typescript that Deno uses is not compatible with the official version (.ts
extension, URL imports, etc), so the official tsc
is out of the question.
On the Deno side:
Deno has an official tool called deno bundle
which works flawlessly. I only have one problem with it: it bundles. Also, its going away in the near future.
My question is:
Are there any plans on adding a built in method for transpiling Typescript (or even JSX 👀) to Javascript? Someting like deno transpile
that, unlike deno bundle
, would only have one responsibility.
I believe that this is one of the last components that Deno needs to be completely Batteries Includedᵀᴹ