8 lines
260 B
Text
8 lines
260 B
Text
const path = require("path")
|
|
|
|
module.exports = {
|
|
// config: path.resolve("config", "config.js"),
|
|
"models-path": path.resolve("src", "lib", "models"),
|
|
// "seeders-path": path.resolve("src", "seeders"),
|
|
"migrations-path": path.resolve("src", "migrations")
|
|
}
|