Using ESBuild with Deno
Hey, is anyone more familiar with ESBuild? I am currently trying to transpile my Deno TypeScript project with ESBuild in JavaScript. But I don't want to bundle the files. I just want to transpile them and put them under the same path instead of
Problem with this is that it does not resolve the import paths properly. At the end there is still the
src in dist. I'm currently doing the whole thing like this:Problem with this is that it does not resolve the import paths properly. At the end there is still the
.ts extension in the import. Another problem is, for example, the ESBuild tries to convert the .d.ts files into .d.js which are then simply empty.