Closed
Description
π Search Terms
import clause ts extension resolution
π Version & Regression Information
- This is the behavior in every version I tried
β― Playground Link
π» Code
// @filename: a.ts
export const a = 'a'
// @filename: b.ts
import './a.ts'
import {} from './a.ts'
π Actual behavior
We get one error in b.ts
π Expected behavior
We should get errors on both imports in b.ts
Additional information about the issue
No response