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 ca