Socket
Book a DemoInstallSign in
Socket

fix-tsc-esnext-imports

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fix-tsc-esnext-imports

Appends .js file extension to imports

latest
Source
npmnpm
Version
2.0.0
Version published
Maintainers
1
Created
Source

fix-tsc-esnext-imports

The typescript compiler does not generate valid modules when using "module"= "ESNext". Specifically it's missing the file extension for the generated files for any local imports and exports. Module loaders like the browser and deno expect those imports to actually correspond to files. Whether or not they should compensate for missing extensions is a topic for elsewhere, The goal here is just to fix the files.

This cli tool goes over the generated output and adds in the missing .js references for any local imports and exports. If the specific file you're trying to import doesn't exist then instead we assume you're pulling in a directory and append /index.js instead. A local import needing to be fixed is defined as starting with dot slash "./" and not containing a second dot in the remainder of the import.

This tool does not address named imports, only local ones. Though might add that at a later time via flags if it's needed.

Useage

From package.json

"scripts": 
{
    "fix-imports": "fix-tsc-esnext-imports path/to/output/folder"
}

From command line

npx fix-tsc-esnext-imports path/to/output/folder

Keywords

tsc

FAQs

Package last updated on 10 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts