Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JavaScript file: Shadowing require still behaves like the global one #61528

Open
Derugon opened this issue Apr 4, 2025 · 1 comment
Open
Labels
Working as Intended The behavior described is the intended behavior; this is not a bug

Comments

@Derugon
Copy link

Derugon commented Apr 4, 2025

πŸ”Ž Search Terms

require shadowing javascript import scope local

πŸ•— Version & Regression Information

⏯ Playground Link

https://www.typescriptlang.org/play/?esModuleInterop=false&jsx=0&module=0&filetype=js&q=422#code/GYVwdgxgLglg9mABAUwB4EMC2AHANsxACgEpEBvAKEWsQHoAqexAAW3QCctyBnKdmMAHMAvojBYC9WlRqhIsBInbIAjiBjLC4zMlJklyKCHZIAciEwAjZOy0TSwmdQgJeibnB3mrNxAF4DNQ1kQgByDy8JUOIAbgphIA

πŸ’» Code

function () {
    /** @param {string} name */
    function require(name) { return Number(name) }

    const someNumber = require('someName');
}

πŸ™ Actual behavior

  1. someNumber is an import.
  2. It raises a type import error:
Cannot find module 'someName' or its corresponding type declarations.

πŸ™‚ Expected behavior

  1. someNumber has type number.
  2. No error is raised.

Additional information about the issue

This is only the case when using type inference with JavaScript files. With TypeScript it works as expected (playground):

function () {
    function require(name: string) { return Number(name) }

    const someNumber = require('someName');
}

If the type of someNumber is explicitely written, it also works as expected (playground):

function () {
    /** @param {string} name */
    function require(name) { return Number(name) }

    /** @type {number} */
    const someNumber = require('someName');
}
@RyanCavanaugh RyanCavanaugh added the Working as Intended The behavior described is the intended behavior; this is not a bug label Apr 4, 2025
@RyanCavanaugh
Copy link
Member

There are too many other cases where require appears shadowed but actually isn't (e.g. AMD module bodies). For consistency, require is always inferred to be the module-importing function.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Working as Intended The behavior described is the intended behavior; this is not a bug
Projects
None yet
Development

No branches or pull requests

2 participants