Помогите понять что я делаю не так.
экспорт есть:
constants.js
export const API_URL = 'http://localhost:8080';
export const MAX_THREADS = 8;
импорт есть:
solution.js
import {API_URL, MAX_THREADS} from
./constants.js;
вывод в консоль тоже есть
solution.js
console.log(constants.API_URL);
console.log(constants.MAX_THREADS);
а в итоге пшик
PS E:\УЧЁБА> node e:/УЧЁБА/task90/solution.js
file:///e:/%D0%A3%D0%A7%D0%81%D0%91%D0%90/task90/solution.js:1
import {API_URL, MAX_THREADS} from
./constants.js`;
^^^^^^^^^^^^^^^^
SyntaxError: Unexpected template string
←[90m at Loader.moduleStrategy (internal/modules/esm/translators.js:81:18)←[39m
←[90m at async link (internal/modules/esm/module_job.js:37:21)←[39m
PS E:\УЧЁБА>`