2.0.0 • Published 10 months ago
@rnx-kit/babel-plugin-import-path-remapper v2.0.0
@rnx-kit/babel-plugin-import-path-remapper
@rnx-kit/babel-plugin-import-path-remapper
remaps **/lib/**
imports to
**/src/**
. This is useful for packages that are not correctly exporting
everything via their index.ts
, but you still want to consume the TypeScript
files rather than the transpiled JavaScript.
Usage
Add @rnx-kit/babel-plugin-import-path-remapper
to your babel.config.js
under
plugins. For example, to remap all paths under the @rnx-kit
scope:
// babel.config.js
module.exports = {
presets: ["module:metro-react-native-babel-preset"],
overrides: [
{
test: /\.tsx?$/,
plugins: [
// @babel/plugin-transform-typescript doesn't support `const enum`s.
// See https://babeljs.io/docs/en/babel-plugin-transform-typescript#caveats
// for more details.
"const-enum",
[
"@rnx-kit/babel-plugin-import-path-remapper",
{ test: (source) => source.startsWith("@rnx-kit/") },
],
],
},
],
};
Or, if you're using @rnx-kit/metro-config
:
// babel.config.js
const { makeBabelConfig } = require("@rnx-kit/metro-config");
module.exports = makeBabelConfig([
[
"@rnx-kit/babel-plugin-import-path-remapper",
{ test: (source) => source.startsWith("@rnx-kit/") },
],
]);
Options
Option | Type | Description |
---|---|---|
test | (source: string) => boolean | Required A function returning whether the passed source should be redirected to another module. |
remap | (moduleName: string, path: string) => string | Optional A function returning the module that should be used instead, e.g. contoso/index.js -> contoso/index.ts . |
2.0.0
10 months ago
1.1.4
2 years ago
1.1.3
2 years ago
1.1.1
3 years ago
1.1.2
3 years ago
1.1.0
3 years ago
1.0.11
4 years ago
1.0.12
4 years ago
1.0.10
4 years ago
1.0.9
4 years ago
1.0.8
4 years ago
1.0.7
4 years ago
1.0.6
4 years ago
1.0.5
4 years ago
1.0.4
4 years ago
1.0.3
4 years ago
1.0.2
4 years ago
1.0.1
4 years ago
1.0.0
4 years ago