You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Between TypeScript 2.0 Beta and now, ability to specify the file extension in relative path imports is gone. It appears to have been done intentionally.
Example, we used to be able to this.
import {view} from './front.tsx'
import {store} from './store'
But now:
For people who don't need the feature, they can simply not use it.
For people who do need it, its removal substantially complicates things.