Aparece o seguinte erro ao executar o script da aula: Error [ERR_REQUIRE_ESM]: require() of ES Module (Diretório) not supported. Instead change the require of index.js in (Diretório) to a dynamic import() which is available in all CommonJS modules. at Object. (Diretório) { code: 'ERR_REQUIRE_ESM' }
Ao fazer a importação da biblioteca:
import chalk from 'chalk';
Aparece agora esse erro:
/* import chalk from 'chalk'; ^^^^^^
SyntaxError: Cannot use import statement outside a module */