登录 注册
当前位置:主页 > 资源下载 > 28 > babel-plugin-root-import提供从根路径导入模块的功能

babel-plugin-root-import提供从根路径导入模块的功能

  • 更新:2024-10-23 09:55:26
  • 大小:81KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

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 ) => { // ... } ) ; 安装 使用您选择的软件包管理器进行安装。