mirror of
https://github.com/ahmadk953/poixpixel-discord-bot.git
synced 2025-04-03 02:04:15 +00:00
27 lines
776 B
TypeScript
27 lines
776 B
TypeScript
import { Config } from '../types/ConfigTypes.js';
|
|
import fs from 'node:fs';
|
|
import path from 'node:path';
|
|
|
|
/**
|
|
* Loads the config file from the root directory
|
|
* @returns - The loaded config object
|
|
*/
|
|
export function loadConfig(): Config {
|
|
try {
|
|
const configPath = path.join(process.cwd(), './config.json');
|
|
const configFile = fs.readFileSync(configPath, 'utf8');
|
|
const config: Config = JSON.parse(configFile);
|
|
|
|
const requiredFields = ['token', 'clientId', 'guildId'];
|
|
for (const field of requiredFields) {
|
|
if (!config[field as keyof Config]) {
|
|
throw new Error(`Missing required config field: ${field}`);
|
|
}
|
|
}
|
|
|
|
return config;
|
|
} catch (error) {
|
|
console.error('Failed to load config:', error);
|
|
process.exit(1);
|
|
}
|
|
}
|