Issue with importing module '"discord.js"' - 'Intents' not exported.
Here is the code in question:
import dotenv from 'dotenv';
const bot = new Client({
intents: [
Intents.FLAGS.GUILDS,
Intents.FLAGS.GUILD_MESSAGE
]
});
bot.on('ready', ()=>{
console.log("ready")
})
bot.login(process.env.TOKEN)