Let's say in the src folder, we have two files, one is typescript file someFeatures.ts, the other is js file someFeatures.js,so their main file name is the same, and contain the same content,just the extension name is different,
so in the main index.ts file, I import the dependency as:
import { sizeFormatter, costFormatter } from "./someFeatures";
so how does the compile know which one I'm referring to? it could be someFeatures.ts or someFeatures.js?