少于 1 分钟阅读

一个用于在使用Babel编译代码时为模块添加新的解析器的Babel插件。这个插件允许你添加包含模块的新“根”目录。它还允许你为目录、特定文件甚至其他npm模块设置自定义别名。

描述

// Use this:
import MyUtilFn from 'utils/MyUtilFn';
// Instead of that:
import MyUtilFn from '../../../../utils/MyUtilFn';

// And it also work with require calls
// Use this:
const MyUtilFn = require('utils/MyUtilFn');
// Instead of that:
const MyUtilFn = require('../../../../utils/MyUtilFn');

Star

Star

参考

tleunen/babel-plugin-module-resolver

标签:

分类:

更新时间: