I'm running typescript with create-react-app on a local machine for development purposes. I've gotten rid of the node_modules directory as it's not needed once my image installs the dependencies. The app is able to run when I start it, but I want to know if there's a way to ignore unnecessary typescript warnings that are surfacing because I don't have the node_modules in my working directory.
ie. [ts] Cannot find module 'react', [ts] JSX element implicitly has type 'any' because no interface 'JSX.IntrinsicElements' exists.