create-react-app generates a lot of files that we won't use, especially since this is a hackathon project and we aren't shipping anything to production.
This PR throws out things that clutter this project, like additional css and svg files that were used to build the initial "welcome to react" page. Throwing some of those things out warranted a few new linter configs, namely so that Typescript and ESLint are in agreement when evaluating imports.
create-react-app
generates a lot of files that we won't use, especially since this is a hackathon project and we aren't shipping anything to production.This PR throws out things that clutter this project, like additional
css
andsvg
files that were used to build the initial "welcome to react" page. Throwing some of those things out warranted a few new linter configs, namely so that Typescript and ESLint are in agreement when evaluating imports.