app.ts
The src/app.ts
(or app.js
) is a special file that acts as the entry point for your application. It is where you define and export your Discord.js
client instance.
import { Client } from 'discord.js';
const client = new Client({
/* options */
});
export default client;