is there any benchmark that shows the time results between `deno check` and `tsc --no-emit`?
@codingraph2 ай бұрын
It looks so much easier
@pokefreak21122 ай бұрын
can we do custom jsx transforms/arbitrary AST transforms or do you still need babel for that?
@Zmeu2132 ай бұрын
Is it possible to use things like `import './styles.css'` with plain deno?
@deno_land2 ай бұрын
Not currently, but when it becomes part of the specification, we will add it.
@codernerd70762 ай бұрын
That voice sounds so familiar
@Kabir.Desai.6412 ай бұрын
Thank you for watching!
@xtinctspecies2 ай бұрын
Which version of Typescript does it use? How would the codebase keep up with language enhancements in TS?
@deno_land2 ай бұрын
you can see the version of TypeScript used in Deno by running `deno --version`: the most updated version of deno uses typescript 5.6.2: deno --version deno 2.0.3 (stable, release, aarch64-apple-darwin) v8 12.9.202.13-rusty typescript 5.6.2 Deno's version of TypeScript is updated when new TypeScript versions come out.