In the project directory, you can run:
Builds the app for production to the dist
folder.
This transpiles the typescript code to js, and bundles it.
Runs jest with coverage
Runs eslint, using a combination of google, and air-bnb standards
Used for development.
Runs the storybook app in the development mode.
Open http://localhost:6006 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
We're using webpack so we can bundle our js along with our transpiled typescript code We're bundling to ES modules (import/export) for better tree-shaking.
TBD