How do I find origin of node module warnings?
Hello!
When I start my app I get 4 console errors like this:
I've set
"type": "module"
in my package.json so I suspect this warning is coming from a dependency. However I don't know how to find which dependency. Is there a better way than removing dependencies one by one to find the culprit?
I've tried running the app with NODE_OPTIONS='--trace-warnings' pnpm dev
but this doesn't make a difference2 Replies