Socket
Socket
Sign inDemoInstall

esm-loader-import-relative-add-extension

Package Overview
Dependencies
5
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    esm-loader-import-relative-add-extension

Chainable ESModule Loader to add missing file extensions to relative imports


Version published
Weekly downloads
2
decreased by-33.33%
Maintainers
1
Install size
11.0 MB
Created
Weekly downloads
 

Readme

Source

This project is now obsolete!

Instead, you can find the same functionality, plus additional features, here: esm-loader-import-relative-extension

esm-loader-import-relative-add-extension

Node.js ESModule Loader for adding missing file extensions to 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 usually suggested to NOT use any file extension:

// lib.ts
const result: Record<string, string> = {
  welcome: 'hello',
}
export default result.welcome
// index.ts
import welcome from './lib' // NO EXT!
console.dir(welcome) // 'hello'

However, if we are using loaders with Node.js, this will fail as Node has no idea what to do with this. Using our loader, we'll add 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-add-extension \
  esm-loader-typescript \
  node-esm-loader
// .loaderrc.js
export default {
  loaders: [
    'esm-loader-typescript',
    {
      loader: 'esm-loader-import-relative-add-extension',
      options: {
        extensions: {
          '.ts': '.ts',
        },
      },
    },
  ],
}

Options

Extensions
// .loaderrc.js
export default {
  loaders: [
    {
      loader: 'esm-loader-import-relative-add-extension',
      options: {
        extensions: {
          // Any relative imports found in .js files, which are missing a file
          //  extension, will have the '.js' extension added on-the-fly.
          '.js': '.js',

          // Any relative imports found in .ts or .svelte files, which are
          //  missing a file extension, will have the '.ts' extension added
          //  on-the-fly.
          '.ts': '.ts',
          '.svelte': '.ts',
        },
      },
    },
  ],
}
Debug
// .loaderrc.js
export default {
  loaders: [
    {
      loader: 'esm-loader-import-relative-add-extension',
      options: {
        debug: true,
      },
    },
  ],
}

Ordering

In your loader chain:

License

MIT

Keywords

FAQs

Last updated on 31 Aug 2022

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