CJS -> ESM

This commit is contained in:
2025-03-05 12:19:35 -07:00
parent 5a8611afbc
commit bcc39d5f38
33 changed files with 228 additions and 282 deletions

View File

@@ -1,6 +1,7 @@
require("dotenv-flow").config();
import dotenvFlow from "dotenv-flow";
dotenvFlow.config();
const path = require("path");
module.exports = {
"config": path.resolve("config", "sequelize.js")
import { resolve } from "path";
export default {
"config": resolve("config", "sequelize.js")
};