babel-plugin-normalize-requires
v2.32.0
Published
A Babel plugin that rewrites require() calls to normalize them (removing extensions and trailing slashes, for example).
Downloads
28,513
Maintainers
Keywords
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).