import path from "path"; import fs from "fs"; // Source Directory const svgsDir = path.resolve(__dirname, "svg"); const svgs = fs.readdirSync(svgsDir); // Out Directory const bitmapsDir = path.resolve(process.cwd(), "bitmaps"); export { svgs, bitmapsDir };