-
babel-plugin-root-import提供从根路径导入模块的功能
资源介绍
Babel插件增加了使用import和require的机会,并带有基于root的路径。
例
// Without this plugin...
import SomeExample from '../../../some/example.js' ;
const OtherExample = require ( '../../../other/example.js' ) ;
import ( '../../../other/dynamic' ) . then ( ( mod ) => {
// ...
} ) ;
// With babel-plugin-root-import you can write...
import SomeExample from '~/some/example.js' ;
const OtherExample = require ( '~/other/example.js' ) ;
import ( '~/other/dynamic' ) . then ( ( mod ) => {
// ...
} ) ;
安装
使用您选择的软件包管理器进行安装。