是否可以从CommonJS动态导入ES模块,而不必将文件扩展名更改为mjs,并且如果可能的话,可以使用旧的Node版本(V13之前的版本)?我正在创建一个CLI库,该库将从用户项目中动态导入文件,以基于这些文件自动生成一些代码。
// bin.ts
// This file will be transpiled to CommonJS
const loadResourceFile = async (url: string) => {
const resource = await import(url);
return resource.default;
}
...
// rollup.config.js
import typescript from 'rollup-plugin-typescript2';
import pkg from './package.json';
const commonOutputOptions = {
banner: '#!/usr/bin/env node',
preferConst: true,
sourcemap: true,
};
export default {
input: 'src/bin.ts',
output: [
{
...commonOutputOptions,
file: pkg.main,
format: 'cjs',
},
{
...commonOutputOptions,
file: pkg.module,
format: 'esm',
},
],
external: [...Object.keys(pkg.dependencies || {})],
plugins: [typescript()],
inlineDynamicImports: true,
};
// resource.js
// This file will be a ES module
import a from './a';
export default {
a,
b: 'y',
}
提前谢谢!