|
|
|
|
|
by schemescape
1612 days ago
|
|
This also makes using TypeScript libraries that weren’t authored specifically for Deno nontrivial. One solution is to use an import map on the Deno side to map your extensionless imports to the corresponding files, but this only works when you control the Deno command line arguments (so not for libraries you plan to publish for others to use). It’s unfortunate because, other than this huge problem, Deno is the best TypeScript runtime I’ve found. |
|
I may be nitpicking here, but Deno isn't a typescript runtime, is it? In the usual case, does it not transpile typescript to JavaScript and run the code from there?