### π Search Terms import clause ts extension resolution ### π Version & Regression Information - This is the behavior in every version I tried ### β― Playground Link https://www.typescriptlang.org/dev/bug-workbench/?module=1#code/PTAEAEDMEsBsFMB2BDAtvAXKZA6ALgM4BQR8AHgA4D2ATnqAMZWIH3KgC8oA5MtySAgwEKdFgBG+YkWipqdHjmC5C-WfPoBvAL6hINKqkXKp-IA ### π» Code ```ts // @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_