I'm not exactly sure what's going on here but I have a node.js project (type: javascript) with no ts files in it (go figure) that is throwing 3 typescript errors:
Error TS2304 Cannot find name 'object'.
Error TS2428 All declarations of 'WeakMap' must have identical type parameters.
Error TS2304 Cannot find name 'object'.
All 3 of these are in relation to lodash. I'm not quite sure enough about what I'm doing here to even know what to actually search for but I've stumbled across some fixes referencing a tsconfig file or rolling back the lodash version but most of those are old. On top of that, I'm not sure why I would even need that since I'm doing exactly nothing with typescript...
Anyone have any ideas?