This removes extensions from the resolution map. Extensions are not supportable because files with extensions like .hbs and .ts become unresolvable by the end of the build process.
Consequently, module paths like src/ui/components/foo-bar.hbs and src/ui/components/foo-bar.js become unsupportable, so this PR removes type inference by extension as it then becomes useless as far as I can tell.
This removes extensions from the resolution map. Extensions are not supportable because files with extensions like
.hbs
and.ts
become unresolvable by the end of the build process.Consequently, module paths like
src/ui/components/foo-bar.hbs
andsrc/ui/components/foo-bar.js
become unsupportable, so this PR removes type inference by extension as it then becomes useless as far as I can tell.