Kekkai/shared/config/src/main.js

10 lines
261 B
JavaScript

const fs = require('fs');
const hjson = require('hjson');
const config = () => {
if (!fs.existsSync('../config.hjson')) throw new Error('Config not found');
return hjson.parse(fs.readFileSync('../config.hjson', 'utf-8'));
};
module.exports = config;