Even though the answer from Simon Dold works fine, the better solution compatible with typescript would be to map a Sequelize Model instance to JSON serialisible object, like
const user = await User.findOne({where: {id}}).then(user=>({id: user.id, name: user.name}))