babel-plugin-normalize-requires

A Babel plugin that rewrites require() calls to normalize them (removing extensions and trailing slashes, for example).

Usage no npm install needed!

<script type="module">
  import babelPluginNormalizeRequires from 'https://cdn.skypack.dev/babel-plugin-normalize-requires';
</script>

README

babel-plugin-normalize-requires

Normalize AMD require() calls.

Example

In

require('./a-module.js');

Out

require('./a-module');

Installation

npm install --save-dev babel-plugin-normalize-requires

Usage

Add the following to your .babelrc file:

{
    "plugins": ["normalize-requires"]
}

Technical Details

This plugin removes .js and / suffixes from module names used in AMD require() calls.

However, the plugin is smart enough to not remove .js suffixes when they are part of the npm package name (as opposed to module name).