like `sharp` package. I use config ``` loader: { '.node': 'file', }, ``` when I import (Imported by other packages),after build ,The file `sharp-linux-x64-DQNVFNDI.node` has been successfully extracted in `sharp` package ```js module.exports = require(`../build/Release/sharp-${platformAndArch}.node`); ``` but `module2.exports` return a path string`../sharp-linux-x64-DQNVFNDI.node` ```js module2.exports = globRequire_build_Release_sharp_node(`../build/Release/sharp-${platformAndArch}.node`); ``` I try to use https://github.com/evanw/esbuild/issues/1051#issuecomment-806325487 but not work Is it because 'require' was not captured in the ESM?