Subpath imports don't work for me without adding .js extension. I would like resolveFullPaths too add this automatically, as it does for relative paths, so that I can write e.g. import * from "package/file" instead of import * from "package/file.js"
I suppose this would require tsc-alias to try to resolve the package to see what the extension, if any, is supposed to be? Or if it's e.g. a subpath to a directory?
Subpath imports don't work for me without adding
.jsextension. I would likeresolveFullPathstoo add this automatically, as it does for relative paths, so that I can write e.g.import * from "package/file"instead ofimport * from "package/file.js"I suppose this would require tsc-alias to try to resolve the package to see what the extension, if any, is supposed to be? Or if it's e.g. a subpath to a directory?