I've been working on a chrome extension, but I keep encountering an error that mentions the use of eval
. Surprisingly, my code doesn't include eval
, so it must be coming from one of my dependencies. Is there a quick and efficient method to pinpoint which dependency or sub-dependency is utilizing eval
? I tried removing node_modules
from the search exclude in VSCode, which resulted in over 100 findings. However, it's still quite challenging to identify the exact dependency responsible since it's buried within some sub-dependency folders.