我正在编写自己的Webpack加载器,我想知道是否可以通过以下方式获得以下类型的导入:
import 'module' // load the entire module
import dflt from 'module' // default import
import { foo, bar } from 'module' // named import
我的猜测是,它可以以某种方式从函数的this
上下文中检索它,但除了一些模糊的描述之外,几乎没有任何我可以在互联网上找到的文档。 {3}}
module.exports = function (source) {
// import type?
this.cacheable()
return source
}
有人可以帮忙吗?