🐛 typescript

This commit is contained in:
Axel Olausson Holtenäs 2022-04-10 03:17:30 +02:00
parent 390c323b4d
commit 94d5052abe
No known key found for this signature in database
GPG key ID: 9347A5E873995701
5 changed files with 4 additions and 3 deletions

View file

@ -40,6 +40,7 @@
"node-schedule": "^2.1.0",
"pino": "^7.0.0-rc.9",
"quick.db": "^7.1.3",
"typescript": "^4.6.3",
"uuid": "^8.3.2"
},
"devDependencies": {

View file

View file

@ -23,7 +23,7 @@ export default {
try {
// Defer reply
await interaction.deferReply();
await interaction.deferReply({ ephemeral: true });
// Execute command
await command.execute(interaction);

View file

@ -1,4 +1,4 @@
import database from "./database.ts';
import database from './database';
import deployCommands from './deployCommands';
import dbGuildFix from './dbGuildFix';
import dbMemberFix from './dbMemberFix';

View file

@ -1,7 +1,7 @@
// Dependencies
import { Client, Intents } from 'discord.js'; // discord.js
import database from './helpers/database/index';
import database from './helpers/database';
import events from './handlers/events';
import commands from './handlers/commands';
import locale from './handlers/locale';