## Steps to reproduce a.js ```js export function c(a, b) { } ``` b.ts ```ts import { c } from "./a.js"; c(4); ``` ## Behavior with `typescript@5.8` no error ## Behavior with `tsgo` TS2554 [ERROR]: Expected 2 arguments, but got 1. c(4);