How to add options to a slash command?
How would I add options for people to input data when making a slash command? This is what I have so far.

npm list discord.js and node node -v version?



Template literals (Template strings)new SlashCommandBuilder()
.setName('docs')
.setDescription('Read the docs message')
.addUserOption(option =>
option.setName('target')
.setDescription('Ping the user')
.setRequired(false))
.setDefaultMemberPermissions(PermissionFlagsBits.ManageRoles)
.setDMPermission(false),