Why is it the case that my IDE says `await` does nothing on pretty much every single function?
I'm trying to setup a startup script that creates a local db and seeds it when I start my project. I'm running into an error where db is just not defined or has undefined columns.
I'm debugging, and I can't help but notice that my IDE says
await
does nothing on the migrate
function or any of the db.select()
calls.1 Reply
I can't figure out any reason this wouldn't work: