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
yarnThen run the following command to start the dev server:
npm run dev
# OR
yarn devTo analyze the code statically using ESLint, use the following command:
npm run lint
# OR
yarn lintTo run the tests, run the following command:
npm run test
# OR
yarn testIf you want to watch the files while the tests run, use the following command instead:
npm run test:watch
# OR
yarn test:watchTo generate the production build, run the following command:
npm run build
# OR
yarn build