JavaScript file: Shadowing require
still behaves like the global one
#61528
Labels
Working as Intended
The behavior described is the intended behavior; this is not a bug
π Search Terms
require shadowing javascript import scope local
π Version & Regression Information
require
module resolution was introduced in 4.1.0-dev.20200818 with Alias for commonjs require in JSΒ #39770).β― Playground Link
https://www.typescriptlang.org/play/?esModuleInterop=false&jsx=0&module=0&filetype=js&q=422#code/GYVwdgxgLglg9mABAUwB4EMC2AHANsxACgEpEBvAKEWsQHoAqexAAW3QCctyBnKdmMAHMAvojBYC9WlRqhIsBInbIAjiBjLC4zMlJklyKCHZIAciEwAjZOy0TSwmdQgJeibnB3mrNxAF4DNQ1kQgByDy8JUOIAbgphIA
π» Code
π Actual behavior
someNumber
is an import.π Expected behavior
someNumber
has typenumber
.Additional information about the issue
This is only the case when using type inference with JavaScript files. With TypeScript it works as expected (playground):
If the type of
someNumber
is explicitely written, it also works as expected (playground):The text was updated successfully, but these errors were encountered: