Currently the `NodejsEnvironment.Import()` method supports importing CommonJS modules. But attempting to import an ES module results in an error: ``` Unexpected token 'export' ``` [Node.js supports ES modules.](https://nodejs.org/api/esm.html) We need to figure out how to import them in the `libnode` embedding scenario.