Replies: 3 comments 5 replies
-
This is a great suggestion, but it probably won't receive as much attention as an issue would. |
Beta Was this translation helpful? Give feedback.
1 reply
-
@lilnasy |
Beta Was this translation helpful? Give feedback.
1 reply
-
Could you elaborate on the use case further? What need is there run those build tools as opposed to ones which do work with deno code, like https://deno.land/x/esbuild@v0.17.12? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
One thing that prevents me from using Deno for my TypeScript projects is the incompatibility of Deno with other tools. in particular ESbuild and TSC.
I use ESbuild and TSC to transpile my projects for npm and the browser. ESbuild and TSC do not change the extension of import paths. That's mean we have to use js extension to import a TypeScript file.
It could be nice to implement a very simple resolution strategy for Deno: in a TypeScript file (file ending with ts extension): an import path ending with a js extension is resolved to the same file, but ending with a ts extension if the js file does not exist.
Beta Was this translation helpful? Give feedback.
All reactions