Я пытаюсь выполнить простой импорт экспорта модуля в node.js
.
Вот js. js:
let animal = "cat";
export {animal};
Вот js2. js:
import {animal} from './js.js';
console.log(animal);
Это мое сообщение об ошибке: ![enter image description here](https://i.stack.imgur.com/rsR1X.png)
This is where the files are located:
введите описание изображения здесь