Can't build app due to missing dependencies with Drizzle
Hello y'all, very new to drizzle and while trying to use the quick start guide I ran into the errors pictured.
I am running a Nodejs server compiling JS to TS, with Express. Currently all i have in the file is the basic express example and the basic Drizzle example yet I cannot compile. Any help is appreciated. I already made sure I had all required libraries as per the quick start guide. Thank you.
2 Replies
You should enable skipLibCheck in your tsconfig - this is a best practice anyways so that the TS compiler doesn’t do unnecessary work in dependencies
Thank you!