Socket
Socket
Sign inDemoInstall

esm-loader-import-relative-extension

Package Overview
Dependencies
119
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    esm-loader-import-relative-extension

Chainable ESModule Loader to add or change file extensions on relative imports


Version published
Weekly downloads
19
decreased by-34.48%
Maintainers
1
Install size
11.0 MB
Created
Weekly downloads
 

Readme

Source

esm-loader-import-relative-extension

Node.js ESModule Loader for changing or adding file extensions on relative imports, allowing Node.js to actually resolve the file.

You can use this for .js files, or Node has a built-in flag --experimental-specifier-resolution=node which may work instead. For any file extensions other than .js, this is the loader for you.

Warning! Using experimental Node.js features and flags, API will likely change. This may be helpful for development and testing, but should not be used in production.

Usage

For example: When using Typescript, the imports of other Typescript files are suggested to not use any file extension, or also just use .js:

// lib.ts
const result: Record<string, string> = {
  welcome: 'hello',
}
export default result.welcome
// index.ts
import welcome from './lib' // tsc will add extension
import welcome from './lib.js' // tsc finds the right file anyway
console.dir(welcome) // 'hello'

However, if we are using ESM loaders with Node.js, the above will fail since Node has no idea what those filenames are. Using our loader, we'll add/modify wanted file extensions to these imports on-the-fly, allowing Node to resolve the file after all.

Chainable

This loader can be configured, and chained with other loaders, using node-esm-loader.

npm install --save-dev \
  esm-loader-import-relative-extension \
  esm-loader-typescript \
  node-esm-loader
// .loaderrc.js
export default {
  loaders: [
    'esm-loader-typescript',
    {
      loader: 'esm-loader-import-relative-extension',
      options: {
        extensions: {
          '.ts': {
            '': '.ts',
            '.js': '.ts',
          },
        },
      },
    },
  ],
}

Options

Extensions

With the options below, any relative imports found inside .ts files, which are either missing a file extension, or have a .js extension, will be rewritten on-the-fly to have a .ts extension instead:

// .loaderrc.js
export default {
  loaders: [
    {
      loader: 'esm-loader-import-relative-extension',
      options: {
        extensions: {
          '.ts': {
            '': '.ts'
            '.js': '.ts',
          },
        },
      },
    },
  ],
}
Debug
// .loaderrc.js
export default {
  loaders: [
    {
      loader: 'esm-loader-import-relative-extension',
      options: {
        debug: true,
      },
    },
  ],
}

Ordering

In your loader chain:

License

MIT

Keywords

FAQs

Last updated on 01 Nov 2023

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc