Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 501 Bytes

File metadata and controls

42 lines (31 loc) · 501 Bytes

React TS Webpack template

Template for a React app with Typescript, CSS loader (SASS), Prettier and Jest.

Setup

yarn

Commands

Run the dev server:

yarn dev

Build:

yarn build

This will create production artifacts in /dist. You can serve it using serve:

serve -S /dist

Tests:

yarn test

If you want to watch tests change

yarn test:dev

To create a coverage report:

yarn test:coverage