I've been defining jobs the normal way (at least in wasp 0.14), and the compiler will not resolve the paths, even after manually rewriting them several times.
job updateYTStats {
executor: PgBoss,
perform: {
fn: import {updateStaleYouTubeStats} from "@src/server/workers/updateStaleYoutubeStats",
},
schedule: {
cron: "* * * * *"
},
entities: [UnverifiedCreator, UnverifiedCreatorYouTubeStats]
}
the function exists at the root of the server/workers folder.
Is there anything obvious I am missing @kapa.ai ?