This is a starter template for a TypeScript + Webpack based frontend project that uses SCSS for styling.
Clone the repository in your local machine. Run the following command to install the dependencies
npm install
# or
yarn
Then run the following command to start the dev server:
npm run dev
# OR
yarn dev
To analyze the code statically using ESLint, use the following command:
npm run lint
# OR
yarn lint
To run the tests, run the following command:
npm run test
# OR
yarn test
If you want to watch the files while the tests run, use the following command instead:
npm run test:watch
# OR
yarn test:watch
To generate the production build, run the following command:
npm run build
# OR
yarn build