在使用 Babel 编译代码时,设置路径的自定义别名 alias
一个用于在使用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');