I am having an issue getting my intents to import from discord.js.
import { Client, Intents } from 'discord.js'
const client = new Discord.Client({ intents: [Discord.Intents.FLAGS.GUILDS, Discord.Intents.FLAGS.GUILD_MESSAGES] });
const token = 'mytoken'
client.on('ready', () => {
console.log('bot logged in')
})
client.login(token)
When I run npm index.js I get this error: Intent error
Could my installation of the discord.js package be corrupt or maybe didnt install all the way/properly? This is my first time messing with the discord api so im not too familiar with it all yet. Reading documentation and still confused as to why mine wont import properly.