'Nodemon stuck on "[nodemon] clean exit - waiting for changes before restart" when I run nodemon .\index.js

Making a bot with discord.js and I'm following a tutorial, when I run "nodemon .\index.js" in the VSC terminal, it returns back with

[nodemon] 2.0.9
[nodemon] to restart at any time, enter `rs`
[nodemon] watching path(s): *.*
[nodemon] watching extensions: js,mjs,json
[nodemon] starting `node .\index.js`
[nodemon] clean exit - waiting for changes before restart

My code:

const Discord = require("discord.js");
const Bot = new Discord.Client({intents: [Discord.Intents.FLAGS.GUILD_MEMBERS, Discord.Intents.FLAGS.GUILDS]})

Bot.on('ready',() => {
    console.log("The bot is online")
})

Bot.login("Bot Token Here")

I've looked through posts of this same exact problem but I can't seem to find a answer to my problem, and on the tutorial nobody else seems to have this problem. I've restarted this bot project 2 times and I carefully followed the tutorial making sure I typed and installed everything correctly, but it still comes back with "[nodemon] clean exit - waiting for changes before restart"



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source