Ao diritar o comando: npx sequelize-cli model: create --name Pessoas --attributes nome:string,ativo:boolean,email:string,role:string eu passo a ter esse erro
Meu código: .sequelizerc
const path = require('path');
module.exports = {
  'config': path.resolve('./api/config', 'config.json'),
  'models-path': path.resolve('./api/models'),
  'seeders-path': path.resolve('./api/seeders'),
  'migrations-path': path.resolve('./api/migrations')
}